MyBB Community Forums

Full Version: Database password encryption
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have someone writing a php script that requires you to input your forum username and password. We could not figure out how the passwords were encrypted in the database. Does anyone know how? or what we should do to get it to work?
try md5(md5(salt).md5(cleartextpassword))
They aren't encrypted, they're hashed.

md5(md5($user['salt']).md5($user['password]))