Added SILC Thread Queue API
[silc.git] / lib / silccrypt / sha1.c
1 /* Modified to work on various platforms. -Pekka */
2 /*
3 SHA-1 in C
4 By Steve Reid <steve@edmweb.com>
5 100% Public Domain
6 */
7
8 #include "silc.h"
9 #include "sha1_internal.h"
10 #include "sha1.h"
11
12 /*
13  * SILC Hash API for SHA1
14  */
15
16 SILC_HASH_API_INIT(sha1)
17 {
18   SHA1Init((SHA1_CTX *)context);
19 }
20
21 SILC_HASH_API_UPDATE(sha1)
22 {
23   SHA1Update((SHA1_CTX *)context, (unsigned char *)data, len);
24 }
25
26 SILC_HASH_API_FINAL(sha1)
27 {
28   SHA1Final(digest, (SHA1_CTX *)context);
29 }
30
31 SILC_HASH_API_TRANSFORM(sha1)
32 {
33   SHA1Transform(state, buffer);
34 }
35
36 SILC_HASH_API_CONTEXT_LEN(sha1)
37 {
38   return sizeof(SHA1_CTX);
39 }
40
41 void SHA1Init(SHA1_CTX* context)
42 {
43   /* SHA1 initialization constants */
44   context->state[0] = 0x67452301L;
45   context->state[1] = 0xEFCDAB89L;
46   context->state[2] = 0x98BADCFEL;
47   context->state[3] = 0x10325476L;
48   context->state[4] = 0xC3D2E1F0L;
49   context->count[0] = context->count[1] = 0;
50 }
51
52 #define rol(x, nr) silc_rol(x, nr)
53
54 #define blk0(i) (W[i] = SILC_GET_WORD(data))
55 #define blk1(i) (W[i&15] = rol(W[(i+13)&15]^W[(i+8)&15]^W[(i+2)&15]^W[i&15],1))
56
57 #define f1(x,y,z) (z^(x&(y^z)))
58 #define f2(x,y,z) (x^y^z)
59 #define f3(x,y,z) ((x&y)|(z&(x|y)))
60 #define f4(x,y,z) (x^y^z)
61
62 /* (R0+R1), R2, R3, R4 are the different operations used in SHA1 */
63 #define R0(v,w,x,y,z,i) z+=f1(w,x,y)+blk0(i)+0x5A827999+rol(v,5);w=rol(w,30);data+=4;
64 #define R1(v,w,x,y,z,i) z+=f1(w,x,y)+blk1(i)+0x5A827999+rol(v,5);w=rol(w,30);
65 #define R2(v,w,x,y,z,i) z+=f2(w,x,y)+blk1(i)+0x6ED9EBA1+rol(v,5);w=rol(w,30);
66 #define R3(v,w,x,y,z,i) z+=f3(w,x,y)+blk1(i)+0x8F1BBCDC+rol(v,5);w=rol(w,30);
67 #define R4(v,w,x,y,z,i) z+=f4(w,x,y)+blk1(i)+0xCA62C1D6+rol(v,5);w=rol(w,30);
68
69 void SHA1Transform(SilcUInt32 *state, const unsigned char *data)
70 {
71   SilcUInt32 W[16];
72
73   /* Copy context->state[] to working vars */
74   SilcUInt32 a = state[0];
75   SilcUInt32 b = state[1];
76   SilcUInt32 c = state[2];
77   SilcUInt32 d = state[3];
78   SilcUInt32 e = state[4];
79
80   /* 4 rounds of 20 operations each. Loop unrolled. */
81   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);
82   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);
83   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);
84   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);
85   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);
86   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);
87   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);
88   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);
89   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);
90   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);
91   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);
92   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);
93   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);
94   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);
95   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);
96   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);
97   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);
98   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);
99   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);
100   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);
101
102   /* Add the working vars back into context.state[] */
103   state[0] += a;
104   state[1] += b;
105   state[2] += c;
106   state[3] += d;
107   state[4] += e;
108
109   /* Wipe variables */
110   a = b = c = d = e = 0;
111   memset(W, 0, sizeof(W));
112 }
113
114 /* Run your data through this. */
115
116 void SHA1Update(SHA1_CTX* context, unsigned char* data, SilcUInt32 len)
117 {
118   SilcUInt32 i, j;
119
120   j = (context->count[0] >> 3) & 63;
121   if ((context->count[0] += len << 3) < (len << 3)) context->count[1]++;
122   context->count[1] += (len >> 29);
123   if ((j + len) > 63) {
124     memcpy(&context->buffer[j], data, (i = 64-j));
125     SHA1Transform(context->state, context->buffer);
126     for ( ; i + 63 < len; i += 64) {
127       SHA1Transform(context->state, &data[i]);
128     }
129     j = 0;
130   }
131   else i = 0;
132   memcpy(&context->buffer[j], &data[i], len - i);
133 }
134
135 /* Add padding and return the message digest. */
136
137 void SHA1Final(unsigned char digest[20], SHA1_CTX* context)
138 {
139   SilcUInt32 i, j;
140   unsigned char finalcount[8];
141
142   for (i = 0; i < 8; i++) {
143     finalcount[i] = (unsigned char)((context->count[(i >= 4 ? 0 : 1)]
144                                      >> ((3 - (i & 3)) * 8)) & 255);
145   }
146   SHA1Update(context, (unsigned char *)"\200", 1);
147   while ((context->count[0] & 504) != 448) {
148     SHA1Update(context, (unsigned char *)"\0", 1);
149   }
150
151   SHA1Update(context, finalcount, 8);  /* Should cause a SHA1Transform() */
152   for (i = 0; i < 20; i++) {
153     digest[i] = (unsigned char)
154       ((context->state[i>>2] >> ((3 - (i & 3)) * 8)) & 255);
155   }
156
157   /* Wipe variables */
158   i = j = 0;
159   memset(context->buffer, 0, 64);
160   memset(context->state, 0, 20);
161   memset(context->count, 0, 8);
162   memset(finalcount, 0, 8);
163   SHA1Transform(context->state, context->buffer);
164 }