I wonder how reliable the adler32 checksum is, compared to e.g. md5 checksums? It was told on wikipedia that adler32 is "much less reliable" than md5, so I wonder how much, and in which way?

More specifically, I'm wondering if it is reliable enough as a consistency check for long-time archiving of (tar) files of size 20GB+?

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

For details on the error-checking capabilities of the Adler-32 checksum, see for example Revisiting Fletcher and Adler Checksums. Maxino, 2006.

This paper contains an analysis on the Hamming distance provided by these two checksums, and provides an indication of the residual error rate for data words up to about 2^11 bits. Which, obviously is much less than your requirement of 2^38 bits...

link|improve this answer
Thanks, that's a useful paper. Would be interesting to se calculations of word lenghts up to 20Gb+ ... interesting to see if there will be occur the similar treshold effect, with a sharply increasing rate of undetected errors, somewhere before that, for the adler32 algo too ... – Samuel Lampa May 18 '11 at 14:56
feedback

This is an ancient algorithm; one which, as the Wikipedia page says, "trades accuracy for speed". In short, no, you shouldn't rely on it.

The point is that with multiple corruptions, this checksum might still pass as "okay". Due to the avalanche effect, this is significantly less likely to occur in modern algorithms (even the aging MD5).

For today's machines, speed is not so much of a concern, therefore I'd suggest using a modern algorithm (such as SHA2 - even MD5, should the SHA2 family be too modern for your tastes), even for files in the TB range. The insignificant time savings you'd get with an old checksum system are IMHO not enough to balance the significantly increased risk of undetected data corruption - and honestly, 20GB of files is not that much data these days that you'd need to use weak (and I daresay broken) algorithms.

link|improve this answer
feedback

It is less reliable than say MD5 or CRC (about the same as CRC actually). Advantage is speed, disadvantage is more showing for short data (few hundred bytes) - the meaning is that the distribution of hash values does not cover very well the available 32bit output. For big files it is a good choice.

link|improve this answer
4  
also, you may want to read this forum perlmonks.org/?node_id=618494 – Euqil May 18 '11 at 11:19
-1 for the last sentence: 20GB is not very big by today's standards, and using a weak redundancy check will come back and bite you (maybe not next week, maybe not next month, maybe not even next year). Finding 10 years worth of archives in unreadable state (yet with CRC claiming to be correct) kind of sucks. – Piskvor May 18 '11 at 11:26
I disagree with the reply and with the minus as well - with 20 GB the algorithm provides good distribution which is powerful enough so it really depends only on the speed requirements the OP has for this operation. Today's standards or tommorow's - it does not matter since mathematics does not care about being hip :) – Euqil May 18 '11 at 11:32
The forum thread was great ... especially as someone had done an actual test of the reliability ... would be great to find something similar for big files (though I realize the time it would take :s) – Samuel Lampa May 18 '11 at 11:35
Even the venerable MD5 is fast enough that it will be I/O-bound, so speed is not really a limit IMNSHO. I've had a run with CRC32 claiming that a corrupted file passed the CRC check (two corruptions at different positions), so I'm rather skeptical of an algorithm that's even weaker than that. Note that the linked discussion checks for collisions ("are these two strings different?"), not for identity ("are these data unchanged?") - if they're different, doesn't matter how different. – Piskvor May 18 '11 at 11:40
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.