30.11.2013, 11:50
I think you can hash them without whirlpool too
for example:
sorce
Why would you like to make changes to a player's password ?
Quote:
All passwords are hashed with SHA1, that means you cannot decrypt SHA1 passwords once they are set. For more information, visit the Wikipedia Page |
pawn Код:
format(query, sizeof(query), "INSERT INTO playerdata (user, password, score, money, IP) VALUES('%s', SHA1('%s'), 0, 0, '%s', 0.0)", pname, passwordstring, IP);
Quote:
how to make change that to whirpool hashing passwords? please help |