PDA

View Full Version : vbulletin hash?


piskotilki
10-31-2006, 02:37 PM
my codes

if($hashpassword==$hashpass)
...
..
.


$hashpass='';#the hash that will be used for the passwords which has to be stored in system

ı want to learn vbulletın hash code?

Chroder
11-05-2006, 05:00 AM
vB's password hash is:

md5( md5(password) . salt )
(The salt is available in the 'salt' field of the 'user' table.)