Robust and fast checksum algorithm? - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T08:47:49Zhttp://stackoverflow.com/feeds/question/122982http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/122982/robust-and-fast-checksum-algorithm4Robust and fast checksum algorithm?bene2008-09-23T18:48:56Z2009-05-18T20:07:10Z
<p>Which checksum algorithm can you recommend in this use case:</p>
<p>I want to generate checksums of small JPEG files (~8kb each) to check if the content changed. Using the filesystem's <em>date modified</em> is unfortunately not an option.<br/>
The checksum <strong>need not</strong> be cryptographically strong but it should robustly indicate changes of any size.</p>
<p>The second criterion is <strong>speed</strong> since it should be possible to process at least <em>hundreds</em> of images per second (on a modern CPU).</p>
<p>The calculation will be done on a server with several clients. The clients send the images over Gigabit TCP to the server. So there's <strong>no disk I/O</strong> as bottleneck.</p>
http://stackoverflow.com/questions/122982/robust-and-fast-checksum-algorithm/123020#1230206Answer by luke for Robust and fast checksum algorithm?luke2008-09-23T18:55:59Z2008-09-23T18:55:59Z<p>If you have many small files, your bottleneck is going to be file I/O and probably not a checksum algorithm.</p>
<p>A list of hash functions (which can be thought of as a checksum) can be found <a href="http://en.wikipedia.org/wiki/List_of_hash_functions" rel="nofollow">here</a>.</p>
<p>Is there any reason you can't use the filesystem's date modified to determine if a file has changed? That would probably be faster.</p>
http://stackoverflow.com/questions/122982/robust-and-fast-checksum-algorithm/123036#1230360Answer by radu_c for Robust and fast checksum algorithm?radu_c2008-09-23T18:58:23Z2008-09-23T18:58:23Z<p><a href="http://en.wikipedia.org/wiki/Cyclic_redundancy_check" rel="nofollow">CRC</a></p>
http://stackoverflow.com/questions/122982/robust-and-fast-checksum-algorithm/123038#1230383Answer by pointernil for Robust and fast checksum algorithm?pointernil2008-09-23T18:58:29Z2008-09-26T08:03:45Z<ul>
<li><p>crc32 comes into mind mainly because it's cheap to calculate</p></li>
<li><p>any kind of I/O comes into mind mainly because this will be the limiting factor for such an undertaking ;)</p></li>
<li><p>the problem is not calculating the checksums, the problem is to get the images into memory to calculate the checksum</p></li>
<li><p>i would suggest "stagged" monitoring: </p>
<ul>
<li><p>stage 1: check for changes of file timestamps and if you detect a change there hand over to...<BR/>(not needed in your case as described in the edited version)</p></li>
<li><p>stage 2: get the image into memory and calculate the checksum</p></li>
</ul></li>
<li><p>for sure important as well: <strong>multi-threading</strong>: setting up a pipeline which enables processing of several images in parallel if several cpu cores are available.</p></li>
</ul>
http://stackoverflow.com/questions/122982/robust-and-fast-checksum-algorithm/123048#123048-1Answer by Mark Ransom for Robust and fast checksum algorithm?Mark Ransom2008-09-23T18:59:54Z2008-09-23T19:28:43Z<p>There are lots of fast CRC algorithms that should do the trick:
<a href="http://www.google.com/search?hl=en&q=fast+crc&aq=f&oq=" rel="nofollow">http://www.google.com/search?hl=en&q=fast+crc&aq=f&oq=</a></p>
<p><strong>Edit:</strong> Why the hate? CRC is totally appropriate, as evidenced by the other answers. A Google search was also appropriate, since no language was specified. This is an old, old problem which has been solved so many times that there isn't likely to be a definitive answer.</p>
http://stackoverflow.com/questions/122982/robust-and-fast-checksum-algorithm/123098#1230981Answer by Josh Matthews for Robust and fast checksum algorithm?Josh Matthews2008-09-23T19:06:58Z2008-09-23T19:06:58Z<p>alder32, available in the zlib headers, is advertised as being significantly faster than crc32, while being only slightly less accurate.</p>
http://stackoverflow.com/questions/122982/robust-and-fast-checksum-algorithm/123152#1231522Answer by Bart Read for Robust and fast checksum algorithm?Bart Read2008-09-23T19:14:52Z2008-09-23T19:14:52Z<p>CRC32 is probably good enough, although there's a <em>small</em> chance you might get a collision, such that a file that has been modified might look like it hasn't been because the two versions generate the same checksum. To avoid this possibility I'd therefore suggest using MD5, which will easily be fast enough, and the chances of a collision occurring is reduced to the point where it's almost infinitessimal.</p>
<p>As others have said, with lots of small files your real performance bottleneck is going to be I/O so the issue is dealing with that. If you post up a few more details somebody will probably suggest a way of sorting that out as well.</p>
http://stackoverflow.com/questions/122982/robust-and-fast-checksum-algorithm/160778#1607781Answer by Epsilon for Robust and fast checksum algorithm?Epsilon2008-10-02T03:29:38Z2008-10-02T03:29:38Z<p>Your most important requirement is "to check if the content changed".</p>
<p>If it most important that ANY change in the file be detected, MD-5, SHA-1 or even SHA-256 should be your choice.</p>
<p>Given that you indicated that the checksum NOT be cryptographically good, I would recommend CRC-32 for three reasons. CRC-32 gives good hamming distances over an 8K file. CRC-32 will be at least an order of magnitude faster than MD-5 to calculate (your second requirement). Sometimes as important, CRC-32 only requires 32 bits to store the value to be compared. MD-5 requires 4 times the storage and SHA-1 requires 5 times the storage.</p>
<p>BTW, any technique will be strengthened by prepending the length of the file when calculating the hash.</p>
http://stackoverflow.com/questions/122982/robust-and-fast-checksum-algorithm/329105#3291051Answer by unknown (google) for Robust and fast checksum algorithm?unknown (google)2008-11-30T17:42:14Z2008-11-30T17:42:14Z<p>According to the Wiki <a href="http://en.wikipedia.org/wiki/List_of_hash_functions" rel="nofollow">page</a> pointed to by Luke, MD5 is actually faster than CRC32! </p>
<p>I have tried this myself by using Python 2.6 on Windows Vista, and got the same result.</p>
<p>Here are some results:</p>
<p>crc32: 162.481544276 MBps
md5: 224.489791549 MBps</p>
<p>crc32: 168.332996575 MBps
md5: 226.089336532 MBps</p>
<p>crc32: 155.851515828 MBps
md5: 194.943289532 MBps</p>
<p>I am thinking about the same question as well, and I'm tempted to use the Rsync's variation of Adler-32 for detecting file differences.</p>
http://stackoverflow.com/questions/122982/robust-and-fast-checksum-algorithm/879536#8795361Answer by Tim for Robust and fast checksum algorithm?Tim2009-05-18T20:07:10Z2009-05-18T20:07:10Z<p>Just a postscript to the above; jpegs use lossy compression and the extent of the compression may depend upon the program used to create the jpeg, the colour pallette and/or bit-depth on the system, display gamma, graphics card and user-set compression levels/colour settings. Therefore, comparing jpegs built on different computers/platforms or using different software will be very difficult at the byte level.</p>