]>
git.saurik.com Git - apt.git/blob - apt-pkg/contrib/sha1.cc
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: sha1.cc,v 1.3 2001/05/13 05:15:03 jgg Exp $
4 /* ######################################################################
6 SHA1 - SHA-1 Secure Hash Algorithm.
8 This file is a Public Domain wrapper for the Public Domain SHA1
9 calculation code that is at it's end.
11 The algorithm was originally implemented by
12 Steve Reid <sreid@sea-to-sky.net> and later modified by
13 James H. Brown <jbrown@burgoyne.com>.
15 Modifications for APT were done by Alfredo K. Kojima and Jason
18 Still in the public domain.
20 Test Vectors (from FIPS PUB 180-1)
22 A9993E36 4706816A BA3E2571 7850C26C 9CD0D89D
23 "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq"
24 84983E44 1C3BD26E BAAE4AA1 F95129E5 E54670F1
25 A million repetitions of "a"
26 34AA973C D4C4DAA4 F61EEB2B DBAD2731 6534016F
28 #####################################################################
31 // Include Files /*{{{*/
34 #include <apt-pkg/sha1.h>
35 #include <apt-pkg/strutl.h>
36 #include <apt-pkg/macros.h>
43 // SHA1Transform - Alters an existing SHA-1 hash /*{{{*/
44 // ---------------------------------------------------------------------
45 /* The core of the SHA-1 algorithm. This alters an existing SHA-1 hash to
46 reflect the addition of 16 longwords of new data. Other routines convert
47 incoming stream data into 16 long word chunks for this routine */
49 #define rol(value,bits) (((value) << (bits)) | ((value) >> (32 - (bits))))
51 /* blk0() and blk() perform the initial expand. */
52 /* I got the idea of expanding during the round function from SSLeay */
53 #ifndef WORDS_BIGENDIAN
54 #define blk0(i) (block->l[i] = (rol(block->l[i],24)&0xFF00FF00) \
55 |(rol(block->l[i],8)&0x00FF00FF))
57 #define blk0(i) block->l[i]
59 #define blk(i) (block->l[i&15] = rol(block->l[(i+13)&15]^block->l[(i+8)&15] \
60 ^block->l[(i+2)&15]^block->l[i&15],1))
62 /* (R0+R1),R2,R3,R4 are the different operations used in SHA1 */
63 #define R0(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk0(i)+0x5A827999+rol(v,5);w=rol(w,30);
64 #define R1(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk(i)+0x5A827999+rol(v,5);w=rol(w,30);
65 #define R2(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0x6ED9EBA1+rol(v,5);w=rol(w,30);
66 #define R3(v,w,x,y,z,i) z+=(((w|x)&y)|(w&x))+blk(i)+0x8F1BBCDC+rol(v,5);w=rol(w,30);
67 #define R4(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0xCA62C1D6+rol(v,5);w=rol(w,30);
69 static void SHA1Transform(uint32_t state
[5],uint8_t const buffer
[64])
78 CHAR64LONG16 workspace
, *block
;
81 memcpy(block
,buffer
,sizeof(workspace
));
83 /* Copy context->state[] to working vars */
90 /* 4 rounds of 20 operations each. Loop unrolled. */
172 /* Add the working vars back into context.state[] */
181 // SHA1Summation::SHA1Summation - Constructor /*{{{*/
182 // ---------------------------------------------------------------------
184 SHA1Summation::SHA1Summation()
186 uint32_t *state
= (uint32_t *)State
;
187 uint32_t *count
= (uint32_t *)Count
;
189 /* SHA1 initialization constants */
190 state
[0] = 0x67452301;
191 state
[1] = 0xEFCDAB89;
192 state
[2] = 0x98BADCFE;
193 state
[3] = 0x10325476;
194 state
[4] = 0xC3D2E1F0;
200 // SHA1Summation::Result - Return checksum value /*{{{*/
201 // ---------------------------------------------------------------------
202 /* Add() may not be called after this */
203 SHA1SumValue
SHA1Summation::Result()
205 uint32_t *state
= (uint32_t *)State
;
206 uint32_t *count
= (uint32_t *)Count
;
211 unsigned char finalcount
[8];
213 for (unsigned i
= 0; i
< 8; i
++)
215 // Endian independent
216 finalcount
[i
] = (unsigned char) ((count
[(i
>= 4 ? 0 : 1)]
217 >> ((3 - (i
& 3)) * 8)) & 255);
220 Add((unsigned char *) "\200",1);
221 while ((count
[0] & 504) != 448)
222 Add((unsigned char *) "\0",1);
224 Add(finalcount
,8); /* Should cause a SHA1Transform() */
230 // Transfer over the result
232 unsigned char res
[20];
233 for (unsigned i
= 0; i
< 20; i
++)
235 res
[i
] = (unsigned char)
236 ((state
[i
>> 2] >> ((3 - (i
& 3)) * 8)) & 255);
242 // SHA1Summation::Add - Adds content of buffer into the checksum /*{{{*/
243 // ---------------------------------------------------------------------
244 /* May not be called after Result() is called */
245 bool SHA1Summation::Add(const unsigned char *data
,unsigned long long len
)
250 uint32_t *state
= (uint32_t *)State
;
251 uint32_t *count
= (uint32_t *)Count
;
252 uint8_t *buffer
= (uint8_t *)Buffer
;
255 j
= (count
[0] >> 3) & 63;
256 if ((count
[0] += len
<< 3) < (len
<< 3))
258 count
[1] += (len
>> 29);
261 memcpy(&buffer
[j
],data
,(i
= 64 - j
));
262 SHA1Transform(state
,buffer
);
263 for (; i
+ 63 < len
; i
+= 64)
265 SHA1Transform(state
,&data
[i
]);
271 memcpy(&buffer
[j
],&data
[i
],len
- i
);