Which hashing algorithm is best for uniqueness and speed?
programmers.stackexchange.com
Which hashing algorithm is best for uniqueness and speed?
1–10 of 110 posts
Re: Which hashing algorithm is best for uniqueness and speed?
#2Re: Which hashing algorithm is best for uniqueness and speed?
#3"MurmurHash2_x86_64 computes two 32-bit results in parallel and mixes them at the end, which is fast but means that collision resistance is only as good as a 32-bit hash. I suggest avoiding this variant."[1]
Murmurhash3 has a 128-bit variant, which might be more along the lines of what he's looking for (the original post mentions SHA256).
Re: Which hashing algorithm is best for uniqueness and speed?
#4isn't slow better in this case? I mean if it's fast to generate, it's fast to crack, right?
Re: Which hashing algorithm is best for uniqueness and speed?
#5isn't slow better in this case? I mean if it's fast to generate, it's fast to crack, right?
Re: Which hashing algorithm is best for uniqueness and speed?
#6isn't slow better in this case? I mean if it's fast to generate, it's fast to crack, right?
Re: Which hashing algorithm is best for uniqueness and speed?
#7isn't slow better in this case? I mean if it's fast to generate, it's fast to crack, right?
Also see: http://cyberarms.wordpress.com/2010/10/21/cracking-14-charac...
Re: Which hashing algorithm is best for uniqueness and speed?
#8isn't slow better in this case? I mean if it's fast to generate, it's fast to crack, right?
The person specifically requested an algorithm for a hash table. Nobody is going to attempt to crack that
https://www.securityweek.com/hash-table-collision-attacks-co...
Re: Which hashing algorithm is best for uniqueness and speed?
#9isn't slow better in this case? I mean if it's fast to generate, it's fast to crack, right?
No, guy's looking for a hash table hash, not a cryptographic one. For a hash table you're looking for low collisions and high throughput (so your hash table is fast) first and foremost.
Re: Which hashing algorithm is best for uniqueness and speed?
#10Earlier quoted context omitted.
The person specifically requested an algorithm for a hash table. Nobody is going to attempt to crack that
nobody? This exact problem was a massive issue within the year. https://www.securityweek.com/hash-table-collision-attacks-co...