12.01.2015, 16:28
@UltraScripter, @danish007: Stop suggesting idiotic things, for Christ's sake! Whirlpool is infinitely more secure than "udb_hash", which is not even a real hash a but simple Adler32 checksum algorithm.
@TonyII: is your column big enough? It should be char or varchar with a length of 128. I'm assuming that your query size is big enough since apparently the rest of the data gets saved properly. However,
That's just silly. Why are you copying inputtext? Just pass it into Whirlpool directly.
@TonyII: is your column big enough? It should be char or varchar with a length of 128. I'm assuming that your query size is big enough since apparently the rest of the data gets saved properly. However,
pawn Код:
format(string,sizeof(string),"%s",inputtext);
WP_Hash(password,sizeof(password),string);
pawn Код:
WP_Hash(password, sizeof(password), inputtext);

