14.10.2010, 09:21
Is there any way to encrypt MD5 with Whirlpool ?
I've figured that out on PHP , but cant find a way to do it with pawno...
Using MD5() with INSERT wont work, it wont whirlpool hash it, it just MD5 hashes...
Example:
and
This just wont work..
Any ideas ?
I've figured that out on PHP , but cant find a way to do it with pawno...
Using MD5() with INSERT wont work, it wont whirlpool hash it, it just MD5 hashes...
Example:
Код:
format(Query, sizeof(Query), "INSERT INTO `Accounts` (Username, Password) VALUES('%s', MD5('%s'))", EscapedName, buf);
Код:
WP_Hash(buf, sizeof (buf), MD5_Hash(inputtext));
Any ideas ?