MyBB Community Forums

Full Version: How does MyBB Store the passwords.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
What does the Plain text go through, before becoming the Password which is stored alongside the Salt and Loginkey in the DB ?

I need this info in order to create an application which lets only those people sign in who're registered on the forum.
MyBB 1.8 uses a md5(md5($salt).md5($password)) combination: https://github.com/mybb/mybb/blob/mybb_1...r.php#L209