Bundle sha1 rather than use libgcrypt/nettle
[yaz-moved-to-github.git] / src / wrbuf_sha1.c
1 /* This file is part of the YAZ toolkit.
2  * Copyright (C) Index Data
3  * See the file LICENSE for details.
4  */
5
6 /**
7  * \file wrbuf_sha1.c
8  * \brief Implements SHA1 creation over WRBUF
9  */
10
11 #if HAVE_CONFIG_H
12 #include <config.h>
13 #endif
14
15 #include <stdio.h>
16 #include <stdlib.h>
17 #include <string.h>
18
19 #include <yaz/wrbuf.h>
20
21 /*
22 SHA-1 in C
23 By Steve Reid <steve@edmweb.com>
24 100% Public Domain
25 */
26
27 /* #define LITTLE_ENDIAN * This should be #define'd already, if true. */
28 /* #define SHA1HANDSOFF * Copies data before messing with it. */
29
30 #define SHA1HANDSOFF
31
32 #include <stdint.h>
33 #include <endian.h>
34
35 typedef struct {
36     uint32_t state[5];
37     uint32_t count[2];
38     unsigned char buffer[64];
39 } SHA1_CTX;
40
41 #define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits))))
42
43 /* blk0() and blk() perform the initial expand. */
44 /* I got the idea of expanding during the round function from SSLeay */
45 #if BYTE_ORDER == LITTLE_ENDIAN
46 #define blk0(i) (block->l[i] = (rol(block->l[i],24)&0xFF00FF00) \
47     |(rol(block->l[i],8)&0x00FF00FF))
48 #elif BYTE_ORDER == BIG_ENDIAN
49 #define blk0(i) block->l[i]
50 #else
51 #error "Endianness not defined!"
52 #endif
53 #define blk(i) (block->l[i&15] = rol(block->l[(i+13)&15]^block->l[(i+8)&15] \
54     ^block->l[(i+2)&15]^block->l[i&15],1))
55
56 /* (R0+R1), R2, R3, R4 are the different operations used in SHA1 */
57 #define R0(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk0(i)+0x5A827999+rol(v,5);w=rol(w,30);
58 #define R1(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk(i)+0x5A827999+rol(v,5);w=rol(w,30);
59 #define R2(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0x6ED9EBA1+rol(v,5);w=rol(w,30);
60 #define R3(v,w,x,y,z,i) z+=(((w|x)&y)|(w&x))+blk(i)+0x8F1BBCDC+rol(v,5);w=rol(w,30);
61 #define R4(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0xCA62C1D6+rol(v,5);w=rol(w,30);
62
63
64 /* Hash a single 512-bit block. This is the core of the algorithm. */
65
66 static void SHA1Transform(uint32_t state[5], const unsigned char buffer[64])
67 {
68     uint32_t a, b, c, d, e;
69     typedef union {
70         unsigned char c[64];
71         uint32_t l[16];
72     } CHAR64LONG16;
73 #ifdef SHA1HANDSOFF
74     CHAR64LONG16 block[1];  /* use array to appear as a pointer */
75     memcpy(block, buffer, 64);
76 #else
77     /* The following had better never be used because it causes the
78      * pointer-to-const buffer to be cast into a pointer to non-const.
79      * And the result is written through.  I threw a "const" in, hoping
80      * this will cause a diagnostic.
81      */
82     CHAR64LONG16* block = (const CHAR64LONG16*)buffer;
83 #endif
84     /* Copy context->state[] to working vars */
85     a = state[0];
86     b = state[1];
87     c = state[2];
88     d = state[3];
89     e = state[4];
90     /* 4 rounds of 20 operations each. Loop unrolled. */
91     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);
92     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);
93     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);
94     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);
95     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);
96     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);
97     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);
98     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);
99     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);
100     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);
101     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);
102     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);
103     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);
104     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);
105     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);
106     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);
107     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);
108     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);
109     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);
110     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);
111     /* Add the working vars back into context.state[] */
112     state[0] += a;
113     state[1] += b;
114     state[2] += c;
115     state[3] += d;
116     state[4] += e;
117     /* Wipe variables */
118     a = b = c = d = e = 0;
119 #ifdef SHA1HANDSOFF
120     memset(block, '\0', sizeof(block));
121 #endif
122 }
123
124
125 /* SHA1Init - Initialize new context */
126
127 static void SHA1Init(SHA1_CTX* context)
128 {
129     /* SHA1 initialization constants */
130     context->state[0] = 0x67452301;
131     context->state[1] = 0xEFCDAB89;
132     context->state[2] = 0x98BADCFE;
133     context->state[3] = 0x10325476;
134     context->state[4] = 0xC3D2E1F0;
135     context->count[0] = context->count[1] = 0;
136 }
137
138
139 /* Run your data through this. */
140
141 static void SHA1Update(SHA1_CTX* context, const unsigned char* data, uint32_t len)
142 {
143     uint32_t i;
144     uint32_t j;
145
146     j = context->count[0];
147     if ((context->count[0] += len << 3) < j)
148         context->count[1]++;
149     context->count[1] += (len>>29);
150     j = (j >> 3) & 63;
151     if ((j + len) > 63) {
152         memcpy(&context->buffer[j], data, (i = 64-j));
153         SHA1Transform(context->state, context->buffer);
154         for ( ; i + 63 < len; i += 64) {
155             SHA1Transform(context->state, &data[i]);
156         }
157         j = 0;
158     }
159     else i = 0;
160     memcpy(&context->buffer[j], &data[i], len - i);
161 }
162
163
164 /* Add padding and return the message digest. */
165
166 static void SHA1Final(unsigned char digest[20], SHA1_CTX* context)
167 {
168     unsigned i;
169     unsigned char finalcount[8];
170     unsigned char c;
171
172     for (i = 0; i < 8; i++) {
173         finalcount[i] = (unsigned char)((context->count[(i >= 4 ? 0 : 1)]
174          >> ((3-(i & 3)) * 8) ) & 255);  /* Endian independent */
175     }
176     c = 0200;
177     SHA1Update(context, &c, 1);
178     while ((context->count[0] & 504) != 448) {
179         c = 0000;
180         SHA1Update(context, &c, 1);
181     }
182     SHA1Update(context, finalcount, 8);  /* Should cause a SHA1Transform() */
183     for (i = 0; i < 20; i++) {
184         digest[i] = (unsigned char)
185          ((context->state[i>>2] >> ((3-(i & 3)) * 8) ) & 255);
186     }
187     /* Wipe variables */
188     memset(context, '\0', sizeof(*context));
189     memset(&finalcount, '\0', sizeof(finalcount));
190 }
191
192
193 int wrbuf_sha1_write(WRBUF b, const char *cp, size_t sz, int hexit)
194 {
195     unsigned char digest[20];
196     SHA1_CTX ctx;
197
198     SHA1Init(&ctx);
199     SHA1Update(&ctx, (unsigned char *) cp, sz);
200     SHA1Final(digest, &ctx);
201
202     if (hexit)
203     {
204         int i;
205         for (i = 0; i < 20; i++)
206             wrbuf_printf(b, "%02x", digest[i]);
207     }
208     else
209         wrbuf_write(b, (const char *) digest, 20);
210     return 0;
211 }
212
213 int wrbuf_sha1_puts(WRBUF b, const char *cp, int hexit)
214 {
215     return wrbuf_sha1_write(b, cp, strlen(cp), hexit);
216 }
217
218 /*
219  * Local variables:
220  * c-basic-offset: 4
221  * c-file-style: "Stroustrup"
222  * indent-tabs-mode: nil
223  * End:
224  * vim: shiftwidth=4 tabstop=8 expandtab
225  */