1 /* $NetBSD: sha.c,v 1.1.1.1 2011/04/13 18:14:51 elric Exp $ */
4 * Copyright (c) 1995 - 2001 Kungliga Tekniska Högskolan
5 * (Royal Institute of Technology, Stockholm, Sweden).
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the Institute nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
41 #define A m->counter[0]
42 #define B m->counter[1]
43 #define C m->counter[2]
44 #define D m->counter[3]
45 #define E m->counter[4]
49 SHA1_Init (struct sha
*m
)
61 #define F0(x,y,z) CRAYFIX((x & y) | (~x & z))
62 #define F1(x,y,z) (x ^ y ^ z)
63 #define F2(x,y,z) ((x & y) | (x & z) | (y & z))
64 #define F3(x,y,z) F1(x,y,z)
75 temp = cshift(AA, 5) + f(BB,CC,DD) + EE + data[t] + k; \
78 CC = cshift(BB, 30); \
84 calc (struct sha
*m
, uint32_t *in
)
86 uint32_t AA
, BB
, CC
, DD
, EE
;
96 for (i
= 0; i
< 16; ++i
)
98 for (i
= 16; i
< 80; ++i
)
99 data
[i
] = cshift(data
[i
-3] ^ data
[i
-8] ^ data
[i
-14] ^ data
[i
-16], 1);
201 * From `Performance analysis of MD5' by Joseph D. Touch <touch@isi.edu>
204 #if !defined(WORDS_BIGENDIAN) || defined(_CRAY)
205 static inline uint32_t
206 swap_uint32_t (uint32_t t
)
208 #define ROL(x,n) ((x)<<(n))|((x)>>(32-(n)))
209 uint32_t temp1
, temp2
;
211 temp1
= cshift(t
, 16);
216 return temp1
| temp2
;
226 SHA1_Update (struct sha
*m
, const void *v
, size_t len
)
228 const unsigned char *p
= v
;
229 size_t old_sz
= m
->sz
[0];
233 if (m
->sz
[0] < old_sz
)
235 offset
= (old_sz
/ 8) % 64;
237 size_t l
= min(len
, 64 - offset
);
238 memcpy(m
->save
+ offset
, p
, l
);
243 #if !defined(WORDS_BIGENDIAN) || defined(_CRAY)
245 uint32_t SHA1current
[16];
246 struct x32
*us
= (struct x32
*)m
->save
;
247 for(i
= 0; i
< 8; i
++){
248 SHA1current
[2*i
+0] = swap_uint32_t(us
[i
].a
);
249 SHA1current
[2*i
+1] = swap_uint32_t(us
[i
].b
);
251 calc(m
, SHA1current
);
253 calc(m
, (uint32_t*)m
->save
);
261 SHA1_Final (void *res
, struct sha
*m
)
263 unsigned char zeros
[72];
264 unsigned offset
= (m
->sz
[0] / 8) % 64;
265 unsigned int dstart
= (120 - offset
- 1) % 64 + 1;
268 memset (zeros
+ 1, 0, sizeof(zeros
) - 1);
269 zeros
[dstart
+7] = (m
->sz
[0] >> 0) & 0xff;
270 zeros
[dstart
+6] = (m
->sz
[0] >> 8) & 0xff;
271 zeros
[dstart
+5] = (m
->sz
[0] >> 16) & 0xff;
272 zeros
[dstart
+4] = (m
->sz
[0] >> 24) & 0xff;
273 zeros
[dstart
+3] = (m
->sz
[1] >> 0) & 0xff;
274 zeros
[dstart
+2] = (m
->sz
[1] >> 8) & 0xff;
275 zeros
[dstart
+1] = (m
->sz
[1] >> 16) & 0xff;
276 zeros
[dstart
+0] = (m
->sz
[1] >> 24) & 0xff;
277 SHA1_Update (m
, zeros
, dstart
+ 8);
280 unsigned char *r
= (unsigned char*)res
;
282 for (i
= 0; i
< 5; ++i
) {
283 r
[4*i
+3] = m
->counter
[i
] & 0xFF;
284 r
[4*i
+2] = (m
->counter
[i
] >> 8) & 0xFF;
285 r
[4*i
+1] = (m
->counter
[i
] >> 16) & 0xFF;
286 r
[4*i
] = (m
->counter
[i
] >> 24) & 0xFF;
292 uint32_t *r
= (uint32_t *)res
;
294 for (i
= 0; i
< 5; ++i
)
295 r
[i
] = swap_uint32_t (m
->counter
[i
]);