]> git.ipfire.org Git - people/ms/strongswan.git/blame - Source/charon/transforms/hashers/hasher_sha1.c
changed enum and structs names to _t
[people/ms/strongswan.git] / Source / charon / transforms / hashers / hasher_sha1.c
CommitLineData
f0d14d2c
MW
1/**
2 * @file hasher_sha1.c
3 *
4 * @brief Implementation of hasher_t interface using the
5 * SHA1 algorithm.
6 *
7 */
8
9/*
10 * Copyright (C) 2005 Jan Hutter, Martin Willi
11 * Hochschule fuer Technik Rapperswil
784e2368
MW
12 *
13 * Ported from Steve Reid's <steve@edmweb.com> implementation
14 * "SHA1 in C" found in strongSwan.
f0d14d2c
MW
15 *
16 * This program is free software; you can redistribute it and/or modify it
17 * under the terms of the GNU General Public License as published by the
18 * Free Software Foundation; either version 2 of the License, or (at your
19 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
20 *
21 * This program is distributed in the hope that it will be useful, but
22 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
23 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
24 * for more details.
25 */
26
27#include "hasher_sha1.h"
28
021c2322
MW
29#include <definitions.h>
30#include <utils/allocator.h>
f0d14d2c 31
784e2368
MW
32#define BLOCK_SIZE_SHA1 20
33
3e13b35a
MW
34/*
35 * ugly macro stuff
36 */
784e2368
MW
37#define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits))))
38
39#if BYTE_ORDER == LITTLE_ENDIAN
40 #define blk0(i) (block->l[i] = (rol(block->l[i],24)&0xFF00FF00) |(rol(block->l[i],8)&0x00FF00FF))
41#elif BYTE_ORDER == BIG_ENDIAN
42 #define blk0(i) block->l[i]
43#else
44 #error "Endianness not defined!"
45#endif
46#define blk(i) (block->l[i&15] = rol(block->l[(i+13)&15]^block->l[(i+8)&15] ^block->l[(i+2)&15]^block->l[i&15],1))
47
48/* (R0+R1), R2, R3, R4 are the different operations used in SHA1 */
49#define R0(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk0(i)+0x5A827999+rol(v,5);w=rol(w,30);
50#define R1(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk(i)+0x5A827999+rol(v,5);w=rol(w,30);
51#define R2(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0x6ED9EBA1+rol(v,5);w=rol(w,30);
52#define R3(v,w,x,y,z,i) z+=(((w|x)&y)|(w&x))+blk(i)+0x8F1BBCDC+rol(v,5);w=rol(w,30);
53#define R4(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0xCA62C1D6+rol(v,5);w=rol(w,30);
54
3e13b35a
MW
55
56/**
57 * private data structure with hasing context
58 */
f0d14d2c
MW
59typedef struct private_hasher_sha1_s private_hasher_sha1_t;
60
61struct private_hasher_sha1_s {
62 /**
63 * public interface for this hasher
64 */
784e2368
MW
65 hasher_sha1_t public;
66
3e13b35a
MW
67 /*
68 * state of the hasher
69 */
784e2368
MW
70 u_int32_t state[5];
71 u_int32_t count[2];
72 u_int8_t buffer[64];
f0d14d2c
MW
73};
74
3e13b35a
MW
75/*
76 * Hash a single 512-bit block. This is the core of the algorithm. *
77 */
784e2368
MW
78void SHA1Transform(u_int32_t state[5], const unsigned char buffer[64])
79{
80 u_int32_t a, b, c, d, e;
81 typedef union {
82 u_int8_t c[64];
83 u_int32_t l[16];
84 } CHAR64LONG16;
85 CHAR64LONG16 block[1]; /* use array to appear as a pointer */
86 memcpy(block, buffer, 64);
87
88 /* Copy context->state[] to working vars */
89 a = state[0];
90 b = state[1];
91 c = state[2];
92 d = state[3];
93 e = state[4];
94 /* 4 rounds of 20 operations each. Loop unrolled. */
95 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);
96 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);
97 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);
98 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);
99 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);
100 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);
101 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);
102 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);
103 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);
104 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);
105 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);
106 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);
107 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);
108 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);
109 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);
110 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);
111 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);
112 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);
113 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);
114 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);
115 /* Add the working vars back into context.state[] */
116 state[0] += a;
117 state[1] += b;
118 state[2] += c;
119 state[3] += d;
120 state[4] += e;
121 /* Wipe variables */
122 a = b = c = d = e = 0;
123 memset(block, '\0', sizeof(block));
124}
125
3e13b35a
MW
126/*
127 * Run your data through this.
128 */
784e2368
MW
129void SHA1Update(private_hasher_sha1_t* this, u_int8_t *data, u_int32_t len)
130{
131 u_int32_t i;
132 u_int32_t j;
133
134 j = this->count[0];
135 if ((this->count[0] += len << 3) < j)
136 {
137 this->count[1]++;
138 }
139 this->count[1] += (len>>29);
140 j = (j >> 3) & 63;
141 if ((j + len) > 63)
142 {
143 memcpy(&this->buffer[j], data, (i = 64-j));
144 SHA1Transform(this->state, this->buffer);
145 for ( ; i + 63 < len; i += 64)
146 {
147 SHA1Transform(this->state, &data[i]);
148 }
149 j = 0;
150 }
151 else
152 {
153 i = 0;
154 }
155 memcpy(&this->buffer[j], &data[i], len - i);
156}
f0d14d2c
MW
157
158
784e2368
MW
159/*
160 * Add padding and return the message digest.
161 */
162void SHA1Final(private_hasher_sha1_t *this, u_int8_t *digest)
163{
164 u_int32_t i;
165 u_int8_t finalcount[8];
166 u_int8_t c;
167
168 for (i = 0; i < 8; i++)
169 {
170 finalcount[i] = (u_int8_t)((this->count[(i >= 4 ? 0 : 1)]
171 >> ((3-(i & 3)) * 8) ) & 255); /* Endian independent */
172 }
173 c = 0200;
174 SHA1Update(this, &c, 1);
175 while ((this->count[0] & 504) != 448)
176 {
177 c = 0000;
178 SHA1Update(this, &c, 1);
179 }
180 SHA1Update(this, finalcount, 8); /* Should cause a SHA1Transform() */
181 for (i = 0; i < 20; i++)
182 {
183 digest[i] = (u_int8_t)((this->state[i>>2] >> ((3-(i & 3)) * 8) ) & 255);
184 }
185}
186
187
188/**
189 * implementation of hasher_t.get_hash for sha1
190 */
191static status_t get_hash(private_hasher_sha1_t *this, chunk_t chunk, u_int8_t *buffer)
192{
193 SHA1Update(this, chunk.ptr, chunk.len);
194 if (buffer != NULL)
195 {
196 SHA1Final(this, buffer);
3e13b35a 197 this->public.hasher_interface.reset(&(this->public.hasher_interface));
784e2368
MW
198 }
199 return SUCCESS;
200}
201
202
203/**
204 * implementation of hasher_t.allocate_hash for sha1
205 */
206static status_t allocate_hash(private_hasher_sha1_t *this, chunk_t chunk, chunk_t *hash)
207{
208 chunk_t allocated_hash;
784e2368
MW
209
210 SHA1Update(this, chunk.ptr, chunk.len);
211 if (hash != NULL)
2f856181
MW
212 {
213 allocated_hash.ptr = allocator_alloc(BLOCK_SIZE_SHA1);
214 allocated_hash.len = BLOCK_SIZE_SHA1;
215 if (allocated_hash.ptr == NULL)
216 {
217 return OUT_OF_RES;
218 }
784e2368 219 SHA1Final(this, allocated_hash.ptr);
3e13b35a 220 this->public.hasher_interface.reset(&(this->public.hasher_interface));
2f856181
MW
221
222 *hash = allocated_hash;
784e2368
MW
223 }
224
784e2368
MW
225 return SUCCESS;
226}
227
228/**
229 * implementation of hasher_t.get_block_size for sha1
230 */
231static size_t get_block_size(private_hasher_sha1_t *this)
232{
233 return BLOCK_SIZE_SHA1;
234}
235
236/**
237 * implementation of hasher_t.reset for sha1
238 */
239static status_t reset(private_hasher_sha1_t *this)
240{
241 this->state[0] = 0x67452301;
242 this->state[1] = 0xEFCDAB89;
243 this->state[2] = 0x98BADCFE;
244 this->state[3] = 0x10325476;
245 this->state[4] = 0xC3D2E1F0;
246 this->count[0] = 0;
247 this->count[1] = 0;
248 return SUCCESS;
249}
250/**
251 * implementation of hasher_t.destroy for sha1
252 */
253static status_t destroy(private_hasher_sha1_t *this)
254{
255 allocator_free(this);
256 return SUCCESS;
257}
f0d14d2c
MW
258
259
260/*
261 * Described in header
262 */
263hasher_sha1_t *hasher_sha1_create()
264{
265 private_hasher_sha1_t *this = allocator_alloc_thing(private_hasher_sha1_t);
f0d14d2c
MW
266 if (this == NULL)
267 {
268 return NULL;
269 }
270
784e2368
MW
271 this->public.hasher_interface.get_hash = (status_t (*) (hasher_t*, chunk_t, u_int8_t*))get_hash;
272 this->public.hasher_interface.allocate_hash = (status_t (*) (hasher_t*, chunk_t, chunk_t*))allocate_hash;
273 this->public.hasher_interface.get_block_size = (size_t (*) (hasher_t*))get_block_size;
274 this->public.hasher_interface.reset = (size_t (*) (hasher_t*))reset;
275 this->public.hasher_interface.destroy = (size_t (*) (hasher_t*))destroy;
276
277 /* initialize */
278 this->public.hasher_interface.reset(&(this->public.hasher_interface));
279
f0d14d2c
MW
280 return &(this->public);
281}