Which hashing algorithm is best for uniqueness and speed?
11–20 of 110 posts
Re: Which hashing algorithm is best for uniqueness and speed?
#12isn't slow better in this case? I mean if it's fast to generate, it's fast to crack, right?
Given Moore's law and the prevalence of botnets and cloud computing - hash speed really isn't a very strong means of defence against cracking... Also see: http://cyberarms.wordpress.com/2010/10/21/cracking-14-charac...
(low) hash speed is the whole point of PBKDF2, bcrypt or scrypt.
Re: Which hashing algorithm is best for uniqueness and speed?
#13Re: Which hashing algorithm is best for uniqueness and speed?
#14Re: Which hashing algorithm is best for uniqueness and speed?
#15Earlier quoted context omitted.
nobody? This exact problem was a massive issue within the year. https://www.securityweek.com/hash-table-collision-attacks-co...
Using a slower hash would make the issue worse (linearly): the collisions would still be there, but now each insertion would take even more time due to the extra computational cost of the hash.
Re: Which hashing algorithm is best for uniqueness and speed?
#16"CRC32 collisions: codding collides with gnu". At first I read "coding" and I was all "haha this must be an easter egg of the implementation".
Re: Which hashing algorithm is best for uniqueness and speed?
#17Why did he omit the standards (MD5 and SHA1) from the comparison?
Re: Which hashing algorithm is best for uniqueness and speed?
#18Re: Which hashing algorithm is best for uniqueness and speed?
#19Why did he omit the standards (MD5 and SHA1) from the comparison?
These are not cryptographic hashes. Comparison would be unfair as cryptographic ones are rather slow . These are used in structures like Hash tables or Bloom Filters etc. they need to be very fast and provide reasonable randomness (low collision). Bu their collision rates are very high comparing to say SHA1.
SHA-1 is very fast though so it is a good point for comparison.