43 a -= b; a -= c; a ^= (c>>13); \
44 b -= c; b -= a; b ^= (a<<8); \
45 c -= a; c -= b; c ^= (b>>13); \
46 a -= b; a -= c; a ^= (c>>12); \
47 b -= c; b -= a; b ^= (a<<16); \
48 c -= a; c -= b; c ^= (b>>5); \
49 a -= b; a -= c; a ^= (c>>3); \
50 b -= c; b -= a; b ^= (a<<10); \
51 c -= a; c -= b; c ^= (b>>15); \
82ub4 lookup( k, length, level)
87 register ub4 a,b,c,len;
97 a += (k[0] +((ub4)k[1]<<8) +((ub4)k[2]<<16) +((ub4)k[3]<<24));
98 b += (k[4] +((ub4)k[5]<<8) +((ub4)k[6]<<16) +((ub4)k[7]<<24));
99 c += (k[8] +((ub4)k[9]<<8) +((ub4)k[10]<<16)+((ub4)k[11]<<24));
108 case 11: c+=((ub4)k[10]<<24);
109 case 10: c+=((ub4)k[9]<<16);
110 case 9 : c+=((ub4)k[8]<<8);
112 case 8 : b+=((ub4)k[7]<<24);
113 case 7 : b+=((ub4)k[6]<<16);
114 case 6 : b+=((ub4)k[5]<<8);
116 case 4 : a+=((ub4)k[3]<<24);
117 case 3 : a+=((ub4)k[2]<<16);
118 case 2 : a+=((ub4)k[1]<<8);
136#define mixc(a,b,c,d,e,f,g,h) \
138 a^=b<<11; d+=a; b+=c; \
139 b^=c>>2; e+=b; c+=d; \
140 c^=d<<8; f+=c; d+=e; \
141 d^=e>>16; g+=d; e+=f; \
142 e^=f<<10; h+=e; f+=g; \
143 f^=g>>4; a+=f; g+=h; \
144 g^=h<<8; b+=g; h+=a; \
145 h^=a>>9; c+=h; a+=b; \
170void checksum( k, len, state)
175 register ub4 a,b,c,d,e,f,g,h,length;
179 a=state[0]; b=state[1]; c=state[2]; d=state[3];
180 e=state[4]; f=state[5]; g=state[6]; h=state[7];
185 a += (k[0] +(k[1]<<8) +(k[2]<<16) +(k[3]<<24));
186 b += (k[4] +(k[5]<<8) +(k[6]<<16) +(k[7]<<24));
187 c += (k[8] +(k[9]<<8) +(k[10]<<16)+(k[11]<<24));
188 d += (k[12]+(k[13]<<8)+(k[14]<<16)+(k[15]<<24));
189 e += (k[16]+(k[17]<<8)+(k[18]<<16)+(k[19]<<24));
190 f += (k[20]+(k[21]<<8)+(k[22]<<16)+(k[23]<<24));
191 g += (k[24]+(k[25]<<8)+(k[26]<<16)+(k[27]<<24));
192 h += (k[28]+(k[29]<<8)+(k[30]<<16)+(k[31]<<24));
193 mixc(a,b,c,d,e,f,g,h);
194 mixc(a,b,c,d,e,f,g,h);
195 mixc(a,b,c,d,e,f,g,h);
196 mixc(a,b,c,d,e,f,g,h);
204 case 31: h+=(k[30]<<24);
205 case 30: h+=(k[29]<<16);
206 case 29: h+=(k[28]<<8);
207 case 28: g+=(k[27]<<24);
208 case 27: g+=(k[26]<<16);
209 case 26: g+=(k[25]<<8);
211 case 24: f+=(k[23]<<24);
212 case 23: f+=(k[22]<<16);
213 case 22: f+=(k[21]<<8);
215 case 20: e+=(k[19]<<24);
216 case 19: e+=(k[18]<<16);
217 case 18: e+=(k[17]<<8);
219 case 16: d+=(k[15]<<24);
220 case 15: d+=(k[14]<<16);
221 case 14: d+=(k[13]<<8);
223 case 12: c+=(k[11]<<24);
224 case 11: c+=(k[10]<<16);
225 case 10: c+=(k[9]<<8);
227 case 8 : b+=(k[7]<<24);
228 case 7 : b+=(k[6]<<16);
229 case 6 : b+=(k[5]<<8);
231 case 4 : a+=(k[3]<<24);
232 case 3 : a+=(k[2]<<16);
233 case 2 : a+=(k[1]<<8);
236 mixc(a,b,c,d,e,f,g,h);
237 mixc(a,b,c,d,e,f,g,h);
238 mixc(a,b,c,d,e,f,g,h);
239 mixc(a,b,c,d,e,f,g,h);
242 state[0]=a; state[1]=b; state[2]=c; state[3]=d;
243 state[4]=e; state[5]=f; state[6]=g; state[7]=h;