Reply to thread

This is what I do:


[code]

md5($salt.$p.$userhash);

[/code]


where $userhash is the defined hash for that specific user.


I did consider


[code]

md5($salt.md5($userhash.$p));

[/code]


Back
Top Bottom