Hashes and collisions
Posted Nov 10, 2003 16:49 UTC (Mon) by
dd9jn (subscriber, #4459)
In reply to:
Hashes and collisions by nowster
Parent article:
An attempt to backdoor the kernel
You are mixing up simple hash fucntions (e.g. CRC-32) with cryptographic hash functions (e.g. SHA-1). The latter have a couple of important design criteria and thus you won't ever see a duplicated hash value. If you ever find or can construct a different second file hashing to the same value you have broken that hash function with huge consequences for about all cryptographic protocols. Even for the old MD5 algorithms, no collision has ever been found (the often reported weakness found by Hans Dobbertin is on a reduced MD5 variant).
Using MD5 or SHA-1 is a perfectly good choice to identify a text.
(
Log in to post comments)