Hi all. 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 CRC32. Basically, will adler32(crc32(data)) yield a smaller collision probability than crc32(data)? The last comment here gives some test results in favor of combining, but no source is mentioned. For my purpose, collision is not critical (i.e. the task does not involve security), but I'd rather minimize the probability anyway, if possible. PS: I'm just starting in the wonderful world of hashing, doing a lot of reading about it. Sorry if I asked a silly question, I haven't even acquired the proper "hash dialect" yet, probably my Google searches regarding this were also poorly formed. Thanks.
|
|
This doesn't make sense combining them in series like that. You are hashing one 32-bit space to another 32-bit space. In the case of a crc32 collision in the first step, the final result is still a collision. Then you add on any potential collisions in the adler32 step. So it can not get any better, and can only be the same or worse. To reduce collisions, you might try something like using the two hashes independently to create a 64-bit output space: adler32(data) << 32 | crc32(data) Whether there is significant benefit in doing that, I'm not sure. Note that the original comment you referred to was storing the hashes independently:
|
||||
|
