Why modulo 65521 in Adler-32 checksum algorithm? - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T16:08:52Zhttp://stackoverflow.com/feeds/question/927277http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/927277/why-modulo-65521-in-adler-32-checksum-algorithm9Why modulo 65521 in Adler-32 checksum algorithm?Kristopher Johnson2009-05-29T17:52:15Z2009-07-16T16:55:02Z
<p>The Adler-32 checksum algorithm does sums modulo 65521. I know that 65521 is the largest prime number that fits in 16 bits, but why is it important to use a prime number in this algorithm?</p>
<p>(I'm sure the answer will seem obvious once someone tells me, but the number-theory parts of my brain just aren't working. Even without expertise in checksum algorithms, a smart person who reads <a href="http://en.wikipedia.org/wiki/Fletcher%27s_checksum" rel="nofollow">http://en.wikipedia.org/wiki/Fletcher%27s_checksum</a> can probably explain it to me.)</p>
http://stackoverflow.com/questions/927277/why-modulo-65521-in-adler-32-checksum-algorithm/927300#927300-2Answer by eulerfx for Why modulo 65521 in Adler-32 checksum algorithm?eulerfx2009-05-29T17:56:49Z2009-05-29T18:00:12Z<p><a href="http://en.wikipedia.org/wiki/Fermat%27s%5Flittle%5Ftheorem" rel="nofollow">http://en.wikipedia.org/wiki/Fermat's_little_theorem</a></p>
http://stackoverflow.com/questions/927277/why-modulo-65521-in-adler-32-checksum-algorithm/927511#9275112Answer by Nils Pipenbrinck for Why modulo 65521 in Adler-32 checksum algorithm?Nils Pipenbrinck2009-05-29T18:42:17Z2009-05-29T18:42:17Z<p>Long story short: </p>
<p>The modulo of a prime has the best bit-shuffeling properties, and that's exactly what we want for a hash-value. </p>
http://stackoverflow.com/questions/927277/why-modulo-65521-in-adler-32-checksum-algorithm/967921#96792112Answer by Unknown for Why modulo 65521 in Adler-32 checksum algorithm?Unknown2009-06-09T02:52:29Z2009-06-09T07:43:21Z<p><strong>Why was mod prime used for Adler32?</strong></p>
<p>From Adler's own website <a href="http://zlib.net/zlib_tech.html" rel="nofollow">http://zlib.net/zlib_tech.html</a></p>
<blockquote>
<p>However, Adler-32
has been constructed to minimize the
ways to make small changes in the data
that result in the same check value,
through the use of sums significantly
larger than the bytes and by using a
prime (65521) for the modulus. <strong>It is
in this area that some analysis is
deserved, but it has not yet been
done.</strong></p>
<p>The main reason for Adler-32 is, of
course, speed in software
implementations.</p>
<p>An alternative to Adler-32 is Fletcher-32, which replaces the modulo of 65521 with 65535. This paper shows that Fletcher-32 is superior for channels with low-rate random bit errors.</p>
</blockquote>
<p>It was used because primes tend to have better mixing properties. Exactly how good it is remains to be discussed.</p>
<p><strong>Other Explanations</strong></p>
<p>Someone else in this thread makes a somewhat convincing argument that modulus a prime is better for detecting bit-swapping. However, this is most likely <strong>not the case</strong> because bit-swapping is extremely rare. The two most prevalent errors are:</p>
<ol>
<li>Random bit-flips (1 <-> 0) common anywhere.</li>
<li>Bit shifting (1 2 3 4 5 -> 2 3 4 5 or 1 1 2 3 4 5) common in networking</li>
</ol>
<p>Most of the bit-swapping out there is caused by random bit-flips that happened to look like a bit swap. </p>
<p>Error correction codes are in fact, designed to withstand n-bits of deviation. From Adler's website:</p>
<blockquote>
<p>A properly constructed CRC-n has the
nice property that less than n bits in
error is always detectable. This is
not always true for Adler-32--it can
detect all one- or two-byte errors but
can miss some three-byte errors.</p>
</blockquote>
<p><strong>Effectiveness of using a prime modulus</strong></p>
<p>I did a long writeup on essentially the same question. Why modulo a prime number?</p>
<p><a href="http://www.codexon.com/posts/hash-functions-the-modulo-prime-myth" rel="nofollow">http://www.codexon.com/posts/hash-functions-the-modulo-prime-myth</a></p>
<p><strong>The short answer</strong></p>
<p>We know much less about prime numbers than composite ones. Therefore people like Knuth started using them. </p>
<p>While it might be true that primes have less relationship to much of the data we hash, increasing the table/modulo size also decreases the probability of a collision (sometimes more than any benefit gained from rounding down to the nearest prime).</p>
<p>Here is a graph of collisions per bucket with 10 million cryptographically random integers comparing mod 65521 vs 65535.
<img src="http://www.codexon.com/wp-content/uploads/2009/06/hash.png" alt="alt text" /></p>
http://stackoverflow.com/questions/927277/why-modulo-65521-in-adler-32-checksum-algorithm/968027#9680273Answer by Dave for Why modulo 65521 in Adler-32 checksum algorithm?Dave2009-06-09T03:39:57Z2009-06-09T14:19:27Z<p>The Adler-32 algorithm is to compute</p>
<pre><code>A = 1 + b1 + b2 + b3 + ...
</code></pre>
<p>and</p>
<pre><code>B = (1 + b1) + (1 + b1 + b2) + (1 + b1 + b2 + b3) + ... = 1 + b1 + 2 * b2 + 3 * b3 + ...
</code></pre>
<p>and report them modulo m. When m is prime, the numbers modulo m form what mathematicians call a <em>field</em>. Fields have the handy property that for any nonzero c, we have a = b if and only if c * a = c * b. Compare the times table modulo 6, which is not a prime, with the times table modulo 5, which is:</p>
<pre><code>* 0 1 2 3 4 5
0 0 0 0 0 0 0
1 0 1 2 3 4 5
2 0 2 4 0 2 4
3 0 3 0 3 0 3
4 0 4 2 0 4 2
5 0 5 4 3 2 1
* 0 1 2 3 4
0 0 0 0 0 0
1 0 1 2 3 4
2 0 2 4 1 3
3 0 3 1 4 2
4 0 4 3 2 1
</code></pre>
<p>Now, the A part gets fooled whenever we interchange two bytes -- addition is commutative after all. The B part is supposed to detect this kind of error, but when m is not a prime, more locations are vulnerable. Consider an Adler checksum mod 6 of</p>
<pre><code>1 3 2 0 0 4
</code></pre>
<p>We have A = 4 and B = 1. Now consider swapping b2 and b4:</p>
<pre><code>1 0 2 3 0 4
</code></pre>
<p>A and B are unchanged because 2 * 3 = 4 * 0 = 2 * 0 = 4 * 3 (modulo 6). One can also swap 2 and 5 to the same effect. This is more likely when the times table is unbalanced -- modulo 5, these changes are detected. In fact, the only time a prime modulus fails to detect a single swap is when two equal indexes mod m are swapped (and if m is big, they must be far apart!).^ This logic can also be applied to interchanged substrings.</p>
<p>The disadvantage in using a smaller modulus is that it will fail slightly more often on random data; in the real world, however, corruption is rarely random.</p>
<p>^ Proof: suppose that we swap indexes i and j with values a and b. Then a*i + b*j = a*j + b*i, so a*i - a*j + b*j - b*i = 0 and (a - b)*(i - j) = 0. Since a field is an integral domain, it follows that a = b (values are congruent) or i = j (indexes are congruent).</p>
<p>EDIT: the website that Unknown linked to (<a href="http://www.zlib.net/zlib_tech.html" rel="nofollow">http://www.zlib.net/zlib_tech.html</a>) makes it clear that the design of Adler-32 was not at all principled. Because of the Huffman code in a DEFLATE stream, even small errors are likely to change the framing (because it's data-dependent) and cause large errors in the output. Consider this answer a slightly contrived example for why people ascribe certain properties to primes.</p>
http://stackoverflow.com/questions/927277/why-modulo-65521-in-adler-32-checksum-algorithm/971951#9719511Answer by Erika for Why modulo 65521 in Adler-32 checksum algorithm?Erika2009-06-09T19:13:13Z2009-06-09T19:13:13Z<p>For perfectly random data, the more buckets the better.</p>
<p>Let's say the data is non-random in some way. Now, the only way that the non-randomness could affect the algorithm is by creating a situation where some buckets have a higher probability of being used than others.</p>
<p>If the modulo number is non-prime, then any pattern affecting one of the numbers making up the modulo could affect the hash. So if you're using 15, a pattern every 3 or 5 as well as every 15 could cause collisions, while if you're using 13 the pattern would have to be every 13 to cause collisions.</p>
<p>65535 = 3*5*17*257, so a pattern involving 3 or 5 could cause collisions using this modulo-- if multiples of 3 were much more common for some reason, for instance, then only the buckets which were multiples of 3 would be put to good use. </p>
<p>Now I'm not sure whether, realistically, this is likely to be an issue. It would be good to determine the collision rate empirically with actual data of the type one wants to hash, not random numbers. (For instance, would numerical data involving Benford's Law or some such irregularity cause patterns that would affect this algorithm? How about using ASCII codes for realistic text?)</p>