blob: b2af313be71593f3d4a918af8e2fbd61a170fe80 [file] [log] [blame]
henrike@webrtc.orgf0488722014-05-13 18:00:26 +00001/*
2 * SHA-1 in C
3 * By Steve Reid <sreid@sea-to-sky.net>
4 * 100% Public Domain
5 *
6 * -----------------
7 * Modified 7/98
8 * By James H. Brown <jbrown@burgoyne.com>
9 * Still 100% Public Domain
10 *
11 * Corrected a problem which generated improper hash values on 16 bit machines
12 * Routine SHA1Update changed from
13 * void SHA1Update(SHA1_CTX* context, unsigned char* data, unsigned int
14 * len)
15 * to
16 * void SHA1Update(SHA1_CTX* context, unsigned char* data, unsigned
17 * long len)
18 *
19 * The 'len' parameter was declared an int which works fine on 32 bit machines.
20 * However, on 16 bit machines an int is too small for the shifts being done
21 * against
22 * it. This caused the hash function to generate incorrect values if len was
23 * greater than 8191 (8K - 1) due to the 'len << 3' on line 3 of SHA1Update().
24 *
25 * Since the file IO in main() reads 16K at a time, any file 8K or larger would
26 * be guaranteed to generate the wrong hash (e.g. Test Vector #3, a million
27 * "a"s).
28 *
29 * I also changed the declaration of variables i & j in SHA1Update to
30 * unsigned long from unsigned int for the same reason.
31 *
32 * These changes should make no difference to any 32 bit implementations since
33 * an
34 * int and a long are the same size in those environments.
35 *
36 * --
37 * I also corrected a few compiler warnings generated by Borland C.
38 * 1. Added #include <process.h> for exit() prototype
39 * 2. Removed unused variable 'j' in SHA1Final
40 * 3. Changed exit(0) to return(0) at end of main.
41 *
42 * ALL changes I made can be located by searching for comments containing 'JHB'
43 * -----------------
44 * Modified 8/98
45 * By Steve Reid <sreid@sea-to-sky.net>
46 * Still 100% public domain
47 *
48 * 1- Removed #include <process.h> and used return() instead of exit()
49 * 2- Fixed overwriting of finalcount in SHA1Final() (discovered by Chris Hall)
50 * 3- Changed email address from steve@edmweb.com to sreid@sea-to-sky.net
51 *
52 * -----------------
53 * Modified 4/01
54 * By Saul Kravitz <Saul.Kravitz@celera.com>
55 * Still 100% PD
56 * Modified to run on Compaq Alpha hardware.
57 *
58 * -----------------
59 * Modified 07/2002
60 * By Ralph Giles <giles@ghostscript.com>
61 * Still 100% public domain
62 * modified for use with stdint types, autoconf
63 * code cleanup, removed attribution comments
64 * switched SHA1Final() argument order for consistency
65 * use SHA1_ prefix for public api
66 * move public api to sha1.h
67 *
68 * -----------------
69 * Modified 02/2012
70 * By Justin Uberti <juberti@google.com>
71 * Remove underscore from SHA1 prefix to avoid conflict with OpenSSL
72 * Remove test code
73 * Untabify
74 *
75 * -----------------
76 * Modified 03/2012
77 * By Ronghua Wu <ronghuawu@google.com>
78 * Change the typedef of uint32(8)_t to uint32(8). We need this because in the
79 * chromium android build, the stdio.h will include stdint.h which already
80 * defined uint32(8)_t.
81 *
82 * -----------------
83 * Modified 04/2012
84 * By Frank Barchard <fbarchard@google.com>
85 * Ported to C++, Google style, change len to size_t, enable SHA1HANDSOFF
86 *
87 * Test Vectors (from FIPS PUB 180-1)
88 * "abc"
89 * A9993E36 4706816A BA3E2571 7850C26C 9CD0D89D
90 * "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq"
91 * 84983E44 1C3BD26E BAAE4AA1 F95129E5 E54670F1
92 * A million repetitions of "a"
93 * 34AA973C D4C4DAA4 F61EEB2B DBAD2731 6534016F
Sergey Ulanov8eb76ff2015-05-20 11:25:37 -070094 *
95 * -----------------
96 * Modified 05/2015
97 * By Sergey Ulanov <sergeyu@chromium.org>
98 * Removed static buffer to make computation thread-safe.
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000099 */
100
101// Enabling SHA1HANDSOFF preserves the caller's data buffer.
102// Disabling SHA1HANDSOFF the buffer will be modified (end swapped).
103#define SHA1HANDSOFF
104
105#include "webrtc/base/sha1.h"
106
107#include <stdio.h>
108#include <string.h>
109
henrike@webrtc.orgc50bf7c2014-05-14 18:24:13 +0000110namespace rtc {
111
Thiago Farina9504b892015-04-09 15:47:57 +0200112namespace {
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000113
114#define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits))))
115
116// blk0() and blk() perform the initial expand.
117// I got the idea of expanding during the round function from SSLeay
118// FIXME: can we do this in an endian-proof way?
henrikg71df77b2015-09-18 01:48:34 -0700119#ifdef RTC_ARCH_CPU_BIG_ENDIAN
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000120#define blk0(i) block->l[i]
121#else
122#define blk0(i) (block->l[i] = (rol(block->l[i], 24) & 0xFF00FF00) | \
123 (rol(block->l[i], 8) & 0x00FF00FF))
124#endif
125#define blk(i) (block->l[i & 15] = rol(block->l[(i + 13) & 15] ^ \
126 block->l[(i + 8) & 15] ^ block->l[(i + 2) & 15] ^ block->l[i & 15], 1))
127
128// (R0+R1), R2, R3, R4 are the different operations used in SHA1.
129#define R0(v, w, x, y, z, i) \
130 z += ((w & (x ^ y)) ^ y) + blk0(i) + 0x5A827999 + rol(v, 5); \
131 w = rol(w, 30);
132#define R1(v, w, x, y, z, i) \
133 z += ((w & (x ^ y)) ^ y) + blk(i) + 0x5A827999 + rol(v, 5); \
134 w = rol(w, 30);
135#define R2(v, w, x, y, z, i) \
136 z += (w ^ x ^ y) + blk(i) + 0x6ED9EBA1 + rol(v, 5);\
137 w = rol(w, 30);
138#define R3(v, w, x, y, z, i) \
139 z += (((w | x) & y) | (w & x)) + blk(i) + 0x8F1BBCDC + rol(v, 5); \
140 w = rol(w, 30);
141#define R4(v, w, x, y, z, i) \
142 z += (w ^ x ^ y) + blk(i) + 0xCA62C1D6 + rol(v, 5); \
143 w = rol(w, 30);
144
145#ifdef VERBOSE // SAK
146void SHAPrintContext(SHA1_CTX *context, char *msg) {
147 printf("%s (%d,%d) %x %x %x %x %x\n",
148 msg,
149 context->count[0], context->count[1],
150 context->state[0],
151 context->state[1],
152 context->state[2],
153 context->state[3],
154 context->state[4]);
155}
156#endif /* VERBOSE */
157
158// Hash a single 512-bit block. This is the core of the algorithm.
159void SHA1Transform(uint32 state[5], const uint8 buffer[64]) {
160 union CHAR64LONG16 {
161 uint8 c[64];
162 uint32 l[16];
163 };
164#ifdef SHA1HANDSOFF
Sergey Ulanov8eb76ff2015-05-20 11:25:37 -0700165 uint8 workspace[64];
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000166 memcpy(workspace, buffer, 64);
167 CHAR64LONG16* block = reinterpret_cast<CHAR64LONG16*>(workspace);
168#else
169 // Note(fbarchard): This option does modify the user's data buffer.
170 CHAR64LONG16* block = const_cast<CHAR64LONG16*>(
171 reinterpret_cast<const CHAR64LONG16*>(buffer));
172#endif
173
174 // Copy context->state[] to working vars.
175 uint32 a = state[0];
176 uint32 b = state[1];
177 uint32 c = state[2];
178 uint32 d = state[3];
179 uint32 e = state[4];
180
181 // 4 rounds of 20 operations each. Loop unrolled.
182 // Note(fbarchard): The following has lint warnings for multiple ; on
183 // a line and no space after , but is left as-is to be similar to the
184 // original code.
185 R0(a,b,c,d,e,0); R0(e,a,b,c,d,1); R0(d,e,a,b,c,2); R0(c,d,e,a,b,3);
186 R0(b,c,d,e,a,4); R0(a,b,c,d,e,5); R0(e,a,b,c,d,6); R0(d,e,a,b,c,7);
187 R0(c,d,e,a,b,8); R0(b,c,d,e,a,9); R0(a,b,c,d,e,10); R0(e,a,b,c,d,11);
188 R0(d,e,a,b,c,12); R0(c,d,e,a,b,13); R0(b,c,d,e,a,14); R0(a,b,c,d,e,15);
189 R1(e,a,b,c,d,16); R1(d,e,a,b,c,17); R1(c,d,e,a,b,18); R1(b,c,d,e,a,19);
190 R2(a,b,c,d,e,20); R2(e,a,b,c,d,21); R2(d,e,a,b,c,22); R2(c,d,e,a,b,23);
191 R2(b,c,d,e,a,24); R2(a,b,c,d,e,25); R2(e,a,b,c,d,26); R2(d,e,a,b,c,27);
192 R2(c,d,e,a,b,28); R2(b,c,d,e,a,29); R2(a,b,c,d,e,30); R2(e,a,b,c,d,31);
193 R2(d,e,a,b,c,32); R2(c,d,e,a,b,33); R2(b,c,d,e,a,34); R2(a,b,c,d,e,35);
194 R2(e,a,b,c,d,36); R2(d,e,a,b,c,37); R2(c,d,e,a,b,38); R2(b,c,d,e,a,39);
195 R3(a,b,c,d,e,40); R3(e,a,b,c,d,41); R3(d,e,a,b,c,42); R3(c,d,e,a,b,43);
196 R3(b,c,d,e,a,44); R3(a,b,c,d,e,45); R3(e,a,b,c,d,46); R3(d,e,a,b,c,47);
197 R3(c,d,e,a,b,48); R3(b,c,d,e,a,49); R3(a,b,c,d,e,50); R3(e,a,b,c,d,51);
198 R3(d,e,a,b,c,52); R3(c,d,e,a,b,53); R3(b,c,d,e,a,54); R3(a,b,c,d,e,55);
199 R3(e,a,b,c,d,56); R3(d,e,a,b,c,57); R3(c,d,e,a,b,58); R3(b,c,d,e,a,59);
200 R4(a,b,c,d,e,60); R4(e,a,b,c,d,61); R4(d,e,a,b,c,62); R4(c,d,e,a,b,63);
201 R4(b,c,d,e,a,64); R4(a,b,c,d,e,65); R4(e,a,b,c,d,66); R4(d,e,a,b,c,67);
202 R4(c,d,e,a,b,68); R4(b,c,d,e,a,69); R4(a,b,c,d,e,70); R4(e,a,b,c,d,71);
203 R4(d,e,a,b,c,72); R4(c,d,e,a,b,73); R4(b,c,d,e,a,74); R4(a,b,c,d,e,75);
204 R4(e,a,b,c,d,76); R4(d,e,a,b,c,77); R4(c,d,e,a,b,78); R4(b,c,d,e,a,79);
205
206 // Add the working vars back into context.state[].
207 state[0] += a;
208 state[1] += b;
209 state[2] += c;
210 state[3] += d;
211 state[4] += e;
212}
213
Thiago Farina9504b892015-04-09 15:47:57 +0200214} // namespace
215
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000216// SHA1Init - Initialize new context.
217void SHA1Init(SHA1_CTX* context) {
218 // SHA1 initialization constants.
219 context->state[0] = 0x67452301;
220 context->state[1] = 0xEFCDAB89;
221 context->state[2] = 0x98BADCFE;
222 context->state[3] = 0x10325476;
223 context->state[4] = 0xC3D2E1F0;
224 context->count[0] = context->count[1] = 0;
225}
226
227// Run your data through this.
228void SHA1Update(SHA1_CTX* context, const uint8* data, size_t input_len) {
229 size_t i = 0;
230
231#ifdef VERBOSE
232 SHAPrintContext(context, "before");
233#endif
234
235 // Compute number of bytes mod 64.
236 size_t index = (context->count[0] >> 3) & 63;
237
238 // Update number of bits.
239 // TODO: Use uint64 instead of 2 uint32 for count.
240 // count[0] has low 29 bits for byte count + 3 pad 0's making 32 bits for
241 // bit count.
242 // Add bit count to low uint32
243 context->count[0] += static_cast<uint32>(input_len << 3);
244 if (context->count[0] < static_cast<uint32>(input_len << 3)) {
245 ++context->count[1]; // if overlow (carry), add one to high word
246 }
247 context->count[1] += static_cast<uint32>(input_len >> 29);
248 if ((index + input_len) > 63) {
249 i = 64 - index;
250 memcpy(&context->buffer[index], data, i);
251 SHA1Transform(context->state, context->buffer);
252 for (; i + 63 < input_len; i += 64) {
253 SHA1Transform(context->state, data + i);
254 }
255 index = 0;
256 }
257 memcpy(&context->buffer[index], &data[i], input_len - i);
258
259#ifdef VERBOSE
260 SHAPrintContext(context, "after ");
261#endif
262}
263
264// Add padding and return the message digest.
265void SHA1Final(SHA1_CTX* context, uint8 digest[SHA1_DIGEST_SIZE]) {
266 uint8 finalcount[8];
267 for (int i = 0; i < 8; ++i) {
268 // Endian independent
269 finalcount[i] = static_cast<uint8>(
270 (context->count[(i >= 4 ? 0 : 1)] >> ((3 - (i & 3)) * 8) ) & 255);
271 }
272 SHA1Update(context, reinterpret_cast<const uint8*>("\200"), 1);
273 while ((context->count[0] & 504) != 448) {
274 SHA1Update(context, reinterpret_cast<const uint8*>("\0"), 1);
275 }
276 SHA1Update(context, finalcount, 8); // Should cause a SHA1Transform().
277 for (int i = 0; i < SHA1_DIGEST_SIZE; ++i) {
278 digest[i] = static_cast<uint8>(
279 (context->state[i >> 2] >> ((3 - (i & 3)) * 8) ) & 255);
280 }
281
282 // Wipe variables.
283 memset(context->buffer, 0, 64);
284 memset(context->state, 0, 20);
285 memset(context->count, 0, 8);
286 memset(finalcount, 0, 8); // SWR
287
288#ifdef SHA1HANDSOFF // Make SHA1Transform overwrite its own static vars.
289 SHA1Transform(context->state, context->buffer);
290#endif
291}
henrike@webrtc.orgc50bf7c2014-05-14 18:24:13 +0000292
293} // namespace rtc