Hi,
I am closing my IPB forum which is not used anymore.
However, I would like to keep the existing members database which is used for another section of my website, without asking them to change their password. I'd consequently like to use the same password algorythm as in IPB on my own authentication system, just by keeping name, email, members_pass_hash, members_pass_salt from the database.
My question is : do you know how are the passwords managed in IPB ?
Any help would be appreciated.
Edit
As from the public function updatePassword(), it looks like the pass_hash is :
$new_pass = md5( md5( $member['members_pass_salt'] ) . $new_md5_pass );
But the hash stored in the Database seem to be the result of a password_hash() function.