Tagged Questions
2
votes
1answer
671 views
Hash function combining - is there a significant decrease in collision risk?
Does anyone know if there's a real benefit regarding decreasing collision probability by combining hash functions? I especially need to know this regarding 32 bit hashing, namely combining Adler32 and ...
0
votes
5answers
209 views
Cumulative Hashes
I've read before here on SO that there are some hash algorithms (I think one of those is adler32) that support the following property:
adler32('abc'); // 123
adler32('def'); // 456
adler32('abcdef'); ...
0
votes
2answers
529 views
Given filename, how can I get the Adler32 using Crypto++
Given a "string filename", how can I get the Adler32 checksum using the C++ Crypto++ library. I am a little confused about using their FileSource and Sink system. Below I have the skeleton of the code ...