19.11.2012, 04:11
Quote:
You cannot un-hash whirlpool because hashing is a one way process.
To hash passwords on sa-mp use https://sampforum.blast.hk/showthread.php?tid=65290. PHP has built in hashing hash('whirlpool', "yourpasswordstring"). |
Код:
$hash = md5(rand(0,1000)); $pass = mysql_real_escape_string($_POST['signup-password']); $pass2 = mysql_real_escape_string($_POST['signup-password2']);