Hash Code and Checksum - what's the difference? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T06:44:30Z http://stackoverflow.com/feeds/question/460576 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/460576/hash-code-and-checksum-whats-the-difference 7 Hash Code and Checksum - what's the difference? Richard E 2009-01-20T09:28:23Z 2009-01-20T09:46:17Z <p>My understanding is that a hash code and checksum are similar things - a numeric value, computed for a block of data, that is <em>relatively</em> unique.</p> <p>i.e. The probability of two blocks of data yielding the same numeric hash/checksum value is low enough that it can be ignored for the purposes of the application.</p> <p>So do we have two words for the same thing, or are their important differences between hash codes and checksums?</p> http://stackoverflow.com/questions/460576/hash-code-and-checksum-whats-the-difference/460581#460581 6 Answer by Zach Scrivena for Hash Code and Checksum - what's the difference? Zach Scrivena 2009-01-20T09:31:16Z 2009-01-20T09:42:35Z <p>I would say that a <a href="http://en.wikipedia.org/wiki/Checksum" rel="nofollow">checksum</a> <strong>is necessarily</strong> a <a href="http://en.wikipedia.org/wiki/Hash_code" rel="nofollow">hashcode</a>. However, not all hashcodes make good checksums.</p> <p>A checksum has a special purpose --- it verifies or <em>checks</em> the integrity of data (some can go beyond that by allowing for <a href="http://en.wikipedia.org/wiki/Error_correction" rel="nofollow">error-correction</a>). "Good" checksums are easy to compute, and can detect many types of data corruptions (e.g. one, two, three erroneous bits).</p> <p>A hashcode simply describes a <a href="http://en.wikipedia.org/wiki/Function_(mathematics)" rel="nofollow">mathematical function</a> that maps data to some value. When used as a means of indexing in data structures (e.g. a hash table), a low collision probability is desirable.</p> http://stackoverflow.com/questions/460576/hash-code-and-checksum-whats-the-difference/460584#460584 6 Answer by Jon Skeet for Hash Code and Checksum - what's the difference? Jon Skeet 2009-01-20T09:32:11Z 2009-01-20T09:32:11Z <p><a href="http://en.wikipedia.org/wiki/Checksum" rel="nofollow">Wikipedia</a> puts it well:</p> <blockquote> <p>Checksum functions are related to hash functions, fingerprints, randomisation functions, and cryptographic hash functions. However, each of those concepts has different applications and therefore different design goals. Check digits and parity bits are special cases of checksums, appropriate for small blocks of data (such as Social Security numbers, bank account numbers, computer words, single bytes, etc.). Some error-correcting codes are based on special checksums that not only detect common errors but also allow the original data to be recovered in certain cases.</p> </blockquote> http://stackoverflow.com/questions/460576/hash-code-and-checksum-whats-the-difference/460588#460588 0 Answer by Steven Robbins for Hash Code and Checksum - what's the difference? Steven Robbins 2009-01-20T09:33:23Z 2009-01-20T09:33:23Z <p>These days they are interchangable, but in days of yore a checksum was a very simple techique where you'd add all the data up (usually in bytes) and tack a byte on the end with that value in.. then you'd hopefully know if any of the original data had been corrupted. Similar to a check bit, but with bytes.</p> http://stackoverflow.com/questions/460576/hash-code-and-checksum-whats-the-difference/460597#460597 0 Answer by ian1971 for Hash Code and Checksum - what's the difference? ian1971 2009-01-20T09:38:17Z 2009-01-20T09:38:17Z <p>I tend to use the word checksum when referring to the code (numeric or otherwise) created for a file or piece of data that can be used to <em>check</em> that the file or data has not been corrupted. The most common usage I come across is to check that files sent across the network have not been altered (deliberately or otherwise).</p> http://stackoverflow.com/questions/460576/hash-code-and-checksum-whats-the-difference/460612#460612 2 Answer by Rafał Dowgird for Hash Code and Checksum - what's the difference? Rafał Dowgird 2009-01-20T09:43:40Z 2009-01-20T09:43:40Z <p>There is a different purpose behind each of them:</p> <ul> <li>Hash code - designed to be random across its domain (to minimize collisions in hash tables and such). Cryptographic hash codes are also designed to be computationally infeasible to reverse.</li> <li>Check sum - designed to detect the most common errors in the data and often to be fast to compute (for effective checksumming fast streams of data).</li> </ul> <p>In practice, the same functions are often good for both purposes. In particular, a cryptographically strong hash code is a good checksum (it is almost impossible that a random error will break a strong hash function), if you can afford the computational cost.</p> http://stackoverflow.com/questions/460576/hash-code-and-checksum-whats-the-difference/460621#460621 3 Answer by Michael Borgwardt for Hash Code and Checksum - what's the difference? Michael Borgwardt 2009-01-20T09:46:09Z 2009-01-20T09:46:09Z <p>There are indeed some differences:</p> <ul> <li>Checksums just need to be different when the input is different (as far as possible), but it's almost as important that they're fast to compute.</li> <li>Hash codes (for use in hashtables) have the same requirements, and additionally they should be evenly distributed across the code space, especially for inputs that are similar.</li> <li>Cryptographic hashes have the <em>much</em> more stringent requirement that given a hash, you cannot construct an input that produces this hash. Computation times comes second.</li> </ul> http://stackoverflow.com/questions/460576/hash-code-and-checksum-whats-the-difference/460623#460623 0 Answer by MSalters for Hash Code and Checksum - what's the difference? MSalters 2009-01-20T09:46:17Z 2009-01-20T09:46:17Z <p>Hashcodes and checksums are both used to create short numerical value from a data item. The difference is that a checksum value should change, even if a small modification is made to the data item. For a hash value, the requirement is merely that real-world data items should have distinct hash values.</p> <p>A clear example are strings. A checksum for a string should include each and every bit, and order matters. A hashcode on the other hand can often be implemented as a checksum of a limited-length prefix. That would mean that "aaaaaaaaaaba" would hash the same as "aaaaaaaaaaab", but hash algorithms can deal wth such collisions.</p>