Quote:
Originally Posted by deadManN
i request for small program .right?!
i say if you made that for me with two text box, i was atlast enable to check if salt attached to password field or it's date, since we had no other field like salt.
|
The code shows the salt being applied to the password field. The date is not used in conjunction with the password or the salt.
Also, a test form won't help you in this case, since you'd need to know the password and the salt in order to be able to recreate the final hash. If you knew what those two items were, you wouldn't need the test form.
$salt = random(6);
$password = md5(md5($password).$salt);
This clearly shows that first they create a random salt, then they append the salt to the password and MD5 it, then they MD5 the result again. The date isn't referenced in there at all.