PDA

View Full Version : vbulletin password encryption


fogjuice
06-05-2010, 03:53 AM
Hello,

I'm trying to create a client bridge between vBulletin and another script I'm using. I'm just wondering how vBulletin encrypts passwords so that I may create a separate php login on a different form. I'm going to be using the vBulletin username and password column on the users table, I just need to know the process vBulletin uses to encrypt its passwords with php. Is it MD5+salt?

Thanks,

Chris

Floris
06-05-2010, 06:08 AM
That's what I use in one of my scripts.

md5( md5(md5('password') . user.salt) )