Get the password hash function for external use
Hello there,
I am trying to bind the users of Vanilla and an extensions manager (PEM)
this application allows to select which table to use for users and specify the function ton crypt password
so I search the function used in Vanilla to crypt password ans the mean to get back it in a variable
currently this variable is $conf['pass_convert'] = create_function('$s', 'return md5($s);');
i've find People.Class.PasswordHash.php but I don't know how to use it in my case
Thank you
I am trying to bind the users of Vanilla and an extensions manager (PEM)
this application allows to select which table to use for users and specify the function ton crypt password
so I search the function used in Vanilla to crypt password ans the mean to get back it in a variable
currently this variable is $conf['pass_convert'] = create_function('$s', 'return md5($s);');
i've find People.Class.PasswordHash.php but I don't know how to use it in my case
Thank you
0
Comments
it's very important for me