98 #define SHA1_DIGEST_SIZE 20 100 #define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits)))) 113 blk0(CHAR64LONG16 *block,
int i)
115 static const uint32_t
n = 1u;
116 if ((*((uint8_t *)(&n))) == 1) {
118 block->l[i] = (
rol(block->l[i], 24) & 0xFF00FF00)
119 | (
rol(block->l[i], 8) & 0x00FF00FF);
124 #define blk(block, i) \ 125 (block->l[i & 15] = rol(block->l[(i + 13) & 15] ^ block->l[(i + 8) & 15] \ 126 ^ block->l[(i + 2) & 15] ^ block->l[i & 15], \ 130 #define R0(v, w, x, y, z, i) \ 131 z += ((w & (x ^ y)) ^ y) + blk0(block, i) + 0x5A827999 + rol(v, 5); \ 133 #define R1(v, w, x, y, z, i) \ 134 z += ((w & (x ^ y)) ^ y) + blk(block, i) + 0x5A827999 + rol(v, 5); \ 136 #define R2(v, w, x, y, z, i) \ 137 z += (w ^ x ^ y) + blk(block, i) + 0x6ED9EBA1 + rol(v, 5); \ 139 #define R3(v, w, x, y, z, i) \ 140 z += (((w | x) & y) | (w & x)) + blk(block, i) + 0x8F1BBCDC + rol(v, 5); \ 142 #define R4(v, w, x, y, z, i) \ 143 z += (w ^ x ^ y) + blk(block, i) + 0xCA62C1D6 + rol(v, 5); \ 151 uint32_t
a,
b,
c,
d,
e;
154 CHAR64LONG16 block[1];
155 memcpy(block, buffer,
sizeof(block));
165 R0(a, b, c, d, e, 0);
166 R0(e, a, b, c, d, 1);
167 R0(d, e, a, b, c, 2);
168 R0(c, d, e, a, b, 3);
169 R0(b, c, d, e, a, 4);
170 R0(a, b, c, d, e, 5);
171 R0(e, a, b, c, d, 6);
172 R0(d, e, a, b, c, 7);
173 R0(c, d, e, a, b, 8);
174 R0(b, c, d, e, a, 9);
175 R0(a, b, c, d, e, 10);
176 R0(e, a, b, c, d, 11);
177 R0(d, e, a, b, c, 12);
178 R0(c, d, e, a, b, 13);
179 R0(b, c, d, e, a, 14);
180 R0(a, b, c, d, e, 15);
181 R1(e, a, b, c, d, 16);
182 R1(d, e, a, b, c, 17);
183 R1(c, d, e, a, b, 18);
184 R1(b, c, d, e, a, 19);
185 R2(a, b, c, d, e, 20);
186 R2(e, a, b, c, d, 21);
187 R2(d, e, a, b, c, 22);
188 R2(c, d, e, a, b, 23);
189 R2(b, c, d, e, a, 24);
190 R2(a, b, c, d, e, 25);
191 R2(e, a, b, c, d, 26);
192 R2(d, e, a, b, c, 27);
193 R2(c, d, e, a, b, 28);
194 R2(b, c, d, e, a, 29);
195 R2(a, b, c, d, e, 30);
196 R2(e, a, b, c, d, 31);
197 R2(d, e, a, b, c, 32);
198 R2(c, d, e, a, b, 33);
199 R2(b, c, d, e, a, 34);
200 R2(a, b, c, d, e, 35);
201 R2(e, a, b, c, d, 36);
202 R2(d, e, a, b, c, 37);
203 R2(c, d, e, a, b, 38);
204 R2(b, c, d, e, a, 39);
205 R3(a, b, c, d, e, 40);
206 R3(e, a, b, c, d, 41);
207 R3(d, e, a, b, c, 42);
208 R3(c, d, e, a, b, 43);
209 R3(b, c, d, e, a, 44);
210 R3(a, b, c, d, e, 45);
211 R3(e, a, b, c, d, 46);
212 R3(d, e, a, b, c, 47);
213 R3(c, d, e, a, b, 48);
214 R3(b, c, d, e, a, 49);
215 R3(a, b, c, d, e, 50);
216 R3(e, a, b, c, d, 51);
217 R3(d, e, a, b, c, 52);
218 R3(c, d, e, a, b, 53);
219 R3(b, c, d, e, a, 54);
220 R3(a, b, c, d, e, 55);
221 R3(e, a, b, c, d, 56);
222 R3(d, e, a, b, c, 57);
223 R3(c, d, e, a, b, 58);
224 R3(b, c, d, e, a, 59);
225 R4(a, b, c, d, e, 60);
226 R4(e, a, b, c, d, 61);
227 R4(d, e, a, b, c, 62);
228 R4(c, d, e, a, b, 63);
229 R4(b, c, d, e, a, 64);
230 R4(a, b, c, d, e, 65);
231 R4(e, a, b, c, d, 66);
232 R4(d, e, a, b, c, 67);
233 R4(c, d, e, a, b, 68);
234 R4(b, c, d, e, a, 69);
235 R4(a, b, c, d, e, 70);
236 R4(e, a, b, c, d, 71);
237 R4(d, e, a, b, c, 72);
238 R4(c, d, e, a, b, 73);
239 R4(b, c, d, e, a, 74);
240 R4(a, b, c, d, e, 75);
241 R4(e, a, b, c, d, 76);
242 R4(d, e, a, b, c, 77);
243 R4(c, d, e, a, b, 78);
244 R4(b, c, d, e, a, 79);
260 context->state[0] = 0x67452301;
261 context->state[1] = 0xEFCDAB89;
262 context->state[2] = 0x98BADCFE;
263 context->state[3] = 0x10325476;
264 context->state[4] = 0xC3D2E1F0;
265 context->count[0] = context->count[1] = 0;
274 j = context->count[0];
275 if ((context->count[0] += (len << 3)) < j) {
278 context->count[1] += (len >> 29);
280 if ((j + len) > 63) {
282 memcpy(&context->buffer[j], data, i);
284 for (; i + 63 < len; i += 64) {
291 memcpy(&context->buffer[j], &data[i], len - i);
300 uint8_t finalcount[8];
302 for (i = 0; i < 8; i++) {
304 (uint8_t)((context->count[(i >= 4 ? 0 : 1)] >> ((3 - (i & 3)) * 8))
308 while ((context->count[0] & 504) != 448) {
314 (uint8_t)((context->state[i >> 2] >> ((3 - (i & 3)) * 8)) & 255);
318 memset(context,
'\0',
sizeof(*context));
static void SHA1_Transform(uint32_t state[5], const uint8_t buffer[64])
static uint32_t blk0(CHAR64LONG16 *block, int i)
#define R3(v, w, x, y, z, i)
#define R2(v, w, x, y, z, i)
#define R0(v, w, x, y, z, i)
SHA_API void SHA1_Init(SHA_CTX *context)
you should not use this method at all Int_t Int_t Double_t Double_t Double_t e
#define R4(v, w, x, y, z, i)
you should not use this method at all Int_t Int_t Double_t Double_t Double_t Int_t Double_t Double_t Double_t Double_t b
SHA_API void SHA1_Update(SHA_CTX *context, const uint8_t *data, const uint32_t len)
SHA_API void SHA1_Final(unsigned char *digest, SHA_CTX *context)
#define R1(v, w, x, y, z, i)