Problem with password hash
#5

@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,
pawn Код:
format(string,sizeof(string),"%s",inputtext);
            WP_Hash(password,sizeof(password),string);
That's just silly. Why are you copying inputtext? Just pass it into Whirlpool directly.
pawn Код:
WP_Hash(password, sizeof(password), inputtext);
Reply


Messages In This Thread
Problem with password hash - by TonyII - 12.01.2015, 13:38
Re: Problem with password hash - by UltraScripter - 12.01.2015, 14:30
Re: Problem with password hash - by danish007 - 12.01.2015, 14:38
Re: Problem with password hash - by danish007 - 12.01.2015, 14:41
Re: Problem with password hash - by Vince - 12.01.2015, 16:28

Forum Jump:


Users browsing this thread: 1 Guest(s)