PDA

View Full Version : Password Encode


Naxon
07-05-2007, 08:34 AM
I just wanted to know how the password is encoded on vBulletin.
md5? sha1? I want to program a login to the forum via site.

Thank's,
Daniel.

Dismounted
07-05-2007, 09:22 AM
If only you had searched....($salt is the salt field in the user table)
md5(md5($password) . $salt);