PDA

View Full Version : Which password algorithm?


pt-pascal
11-13-2008, 10:08 AM
Hi,

I am trying to add a large quantity of accounts through a perl script. I guess every user has it's own individual salt but what is the rest of the algorithm? I've tried many things but no luck.

I hope anyone can help me out :)

Dismounted
11-14-2008, 03:12 AM
$password = md5(md5($plaintext) . $salt);