|
|
|
|
|
by FreakLegion
3266 days ago
|
|
> catching up Not quite. The n-hashing methods described in that paper are rather different from yours. They're significantly faster, for one thing, which matters if you're building e.g. high-performance networking products. An equally important contribution of the paper though is providing a framework for proving the reliability of such methods. There are areas of software development where "in practice this has worked fine for me" isn't good enough. |
|
So they're still doing multiple hash functions as standard practice, you're saying? Wow.
Yes their methods are rather different I see.
Indeed using multiple salts is slower than two hashes.
What I do now instead of that (the salts method was easier to explain) is just one hash, currently SHA-1 but may move to BLAKE2 soon, and chop the result of that up into 20-bit pieces that I use as hash values, modulo the bit array size. How do you think this would compare to what they do?