]> mj.ucw.cz Git - libucw.git/blob - lib/adler32.c
613ed72d5404c3775a1288d55ffbf314e79149cb
[libucw.git] / lib / adler32.c
1 /*
2  *      adler32.c -- compute the Adler-32 checksum of a data stream
3  *
4  *      Copyright (C) 1995--2003 Mark Adler
5  *
6  *      Taken from zlib-1.2.1 and adjusted by Robert Spalek.  For conditions of
7  *      distribution and use, see copyright notice in zlib.h.
8  */
9
10 #include "lib/lib.h"
11 #include "lib/lizard.h"
12
13 #define BASE 65521UL    /* largest prime smaller than 65536 */
14 #define NMAX 5552       /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */
15
16 #define DO1(buf,i)  {s1 += buf[i]; s2 += s1;}
17 #define DO2(buf,i)  DO1(buf,i); DO1(buf,i+1);
18 #define DO4(buf,i)  DO2(buf,i); DO2(buf,i+2);
19 #define DO8(buf,i)  DO4(buf,i); DO4(buf,i+4);
20 #define DO16(buf)   DO8(buf,0); DO8(buf,8);
21
22 #ifdef NO_DIVIDE
23 #  define MOD(a) \
24     do { \
25         if (a >= (BASE << 16)) a -= (BASE << 16); \
26         if (a >= (BASE << 15)) a -= (BASE << 15); \
27         if (a >= (BASE << 14)) a -= (BASE << 14); \
28         if (a >= (BASE << 13)) a -= (BASE << 13); \
29         if (a >= (BASE << 12)) a -= (BASE << 12); \
30         if (a >= (BASE << 11)) a -= (BASE << 11); \
31         if (a >= (BASE << 10)) a -= (BASE << 10); \
32         if (a >= (BASE << 9)) a -= (BASE << 9); \
33         if (a >= (BASE << 8)) a -= (BASE << 8); \
34         if (a >= (BASE << 7)) a -= (BASE << 7); \
35         if (a >= (BASE << 6)) a -= (BASE << 6); \
36         if (a >= (BASE << 5)) a -= (BASE << 5); \
37         if (a >= (BASE << 4)) a -= (BASE << 4); \
38         if (a >= (BASE << 3)) a -= (BASE << 3); \
39         if (a >= (BASE << 2)) a -= (BASE << 2); \
40         if (a >= (BASE << 1)) a -= (BASE << 1); \
41         if (a >= BASE) a -= BASE; \
42     } while (0)
43 #else
44 #  define MOD(a) a %= BASE
45 #endif
46
47 uns
48 update_adler32(uns adler, byte *buf, uns len)
49 {
50   uns s1 = adler & 0xffff;
51   uns s2 = (adler >> 16) & 0xffff;
52   int k;
53
54   if (!buf) return 1L;
55
56   while (len > 0) {
57     k = len < NMAX ? (int)len : NMAX;
58     len -= k;
59     while (k >= 16) {
60       DO16(buf);
61       buf += 16;
62       k -= 16;
63     }
64     if (k != 0) do {
65       s1 += *buf++;
66       s2 += s1;
67     } while (--k);
68     MOD(s1);
69     MOD(s2);
70   }
71   return (s2 << 16) | s1;
72 }
73
74 uns
75 adler32(byte *buf, uns len)
76 {
77   return update_adler32(1, buf, len);
78 }