MyBB Community Forums

Full Version: Encryption Method
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
What encryption method does MyBB use on the passwords? I need the whole code from the PHP files that does it, not just an answer like "sha1 then md5" or something like that. I need to know the whole function that does it thanks.
There is no way to decrypt them. Period.

md5(md5($salt).md5($plain_pass));
I never said I was going to decrypt them, did I?
I just wanted to know how it was encrypted, thanks. Where did you get that line from? What file?
you can also use md5(plainpw) with an empty salt, and mybb will generate a salt for you the first time the user logs in

it's in inc/functions_user.php search for md5(