annotate sha1.c @ 299:5c84cfeb69a9 libavutil

2 other variants of how to implement the core part benchmarks welcome ...
author michael
date Tue, 13 Mar 2007 00:17:55 +0000
parents 37ef3886f6b3
children 0ac5f1000ed1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
288
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
1 // SHA-1 code Copyright 2007 Michael Nidermayer <michaelni@gmx.at>
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
2 // license LGPL
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
3 // based on public domain SHA-1 code by Steve Reid <steve@edmweb.com>
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
4
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
5 #include "common.h"
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
6 #include "sha1.h"
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
7
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
8 typedef struct AVSHA1 {
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
9 uint32_t state[5];
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
10 uint64_t count;
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
11 uint8_t buffer[64];
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
12 } AVSHA1;
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
13
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
14 #define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits))))
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
15
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
16 /* (R0+R1), R2, R3, R4 are the different operations used in SHA1 */
299
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
17 #define R0b(v,w,x,y,z,i) z+((w&(x^y))^y) +block[i]+0x5A827999+rol(v,5);
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
18 #define R2b(v,w,x,y,z,i) z+( w^x ^y) +block[i]+0x6ED9EBA1+rol(v,5);
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
19 #define R3b(v,w,x,y,z,i) z+(((w|x)&y)|(w&x))+block[i]+0x8F1BBCDC+rol(v,5);
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
20 #define R4b(v,w,x,y,z,i) z+( w^x ^y) +block[i]+0xCA62C1D6+rol(v,5);
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
21
298
37ef3886f6b3 cosmetic cleanup
michael
parents: 297
diff changeset
22 #define R0(v,w,x,y,z,i) z+=((w&(x^y))^y) +block[i]+0x5A827999+rol(v,5);w=rol(w,30);
37ef3886f6b3 cosmetic cleanup
michael
parents: 297
diff changeset
23 #define R2(v,w,x,y,z,i) z+=( w^x ^y) +block[i]+0x6ED9EBA1+rol(v,5);w=rol(w,30);
37ef3886f6b3 cosmetic cleanup
michael
parents: 297
diff changeset
24 #define R3(v,w,x,y,z,i) z+=(((w|x)&y)|(w&x))+block[i]+0x8F1BBCDC+rol(v,5);w=rol(w,30);
37ef3886f6b3 cosmetic cleanup
michael
parents: 297
diff changeset
25 #define R4(v,w,x,y,z,i) z+=( w^x ^y) +block[i]+0xCA62C1D6+rol(v,5);w=rol(w,30);
288
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
26
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
27 /* Hash a single 512-bit block. This is the core of the algorithm. */
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
28
299
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
29 //#define VARIANT1
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
30 //#define VARIANT2
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
31
288
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
32 static void transform(uint32_t state[5], uint8_t buffer[64]){
291
78b11473f66a avoid silly ring buffer logic (faster with -O2, -O3 is always slower then -O2)
michael
parents: 290
diff changeset
33 uint32_t block[80];
299
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
34 unsigned int i;
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
35 #ifdef VARIANT1
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
36 uint32_t s[85];
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
37 #else
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
38 unsigned int a, b, c, d, e;
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
39 #endif
290
8f02801da0f8 its faster to copy the data to the stack it seems ...
michael
parents: 289
diff changeset
40
296
5a85142df236 10% smaller object file, 2% slower
michael
parents: 295
diff changeset
41 for(i=0; i<16; i++)
5a85142df236 10% smaller object file, 2% slower
michael
parents: 295
diff changeset
42 block[i]= be2me_32(((uint32_t*)buffer)[i]);
5a85142df236 10% smaller object file, 2% slower
michael
parents: 295
diff changeset
43 for(;i<80; i++)
5a85142df236 10% smaller object file, 2% slower
michael
parents: 295
diff changeset
44 block[i]= rol(block[i-3]^block[i-8]^block[i-14]^block[i-16],1);
290
8f02801da0f8 its faster to copy the data to the stack it seems ...
michael
parents: 289
diff changeset
45
299
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
46
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
47 #ifdef VARIANT1
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
48 s[0]= state[4];
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
49 s[1]= state[3];
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
50 s[2]= state[2];
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
51 s[3]= state[1];
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
52 s[4]= state[0];
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
53 for(i=0; i<20; i++){
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
54 s[5+i]= R0b(s[4+i], s[3+i], s[2+i], s[1+i], s[i], i);
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
55 s[3+i]= rol(s[3+i],30);
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
56 }
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
57 for(; i<40; i++){
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
58 s[5+i]= R2b(s[4+i], s[3+i], s[2+i], s[1+i], s[i], i);
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
59 s[3+i]= rol(s[3+i],30);
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
60 }
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
61 for(; i<60; i++){
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
62 s[5+i]= R3b(s[4+i], s[3+i], s[2+i], s[1+i], s[i], i);
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
63 s[3+i]= rol(s[3+i],30);
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
64 }
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
65 for(; i<80; i++){
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
66 s[5+i]= R4b(s[4+i], s[3+i], s[2+i], s[1+i], s[i], i);
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
67 s[3+i]= rol(s[3+i],30);
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
68 }
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
69 state[0] += s[84];
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
70 state[1] += s[83];
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
71 state[2] += s[82];
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
72 state[3] += s[81];
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
73 state[4] += s[80];
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
74 #else
288
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
75 a = state[0];
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
76 b = state[1];
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
77 c = state[2];
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
78 d = state[3];
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
79 e = state[4];
299
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
80 #ifdef VARIANT2
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
81 for(i=0; i<20; i++){
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
82 int t= R0b(a,b,c,d,e,i);
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
83 e= d;
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
84 d= c;
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
85 c= rol(b,30);
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
86 b= a;
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
87 a= t;
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
88 }
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
89 for(; i<40; i++){
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
90 int t= R2b(a,b,c,d,e,i);
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
91 e= d;
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
92 d= c;
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
93 c= rol(b,30);
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
94 b= a;
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
95 a= t;
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
96 }
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
97 for(; i<60; i++){
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
98 int t= R3b(a,b,c,d,e,i);
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
99 e= d;
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
100 d= c;
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
101 c= rol(b,30);
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
102 b= a;
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
103 a= t;
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
104 }
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
105 for(; i<80; i++){
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
106 int t= R4b(a,b,c,d,e,i);
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
107 e= d;
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
108 d= c;
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
109 c= rol(b,30);
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
110 b= a;
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
111 a= t;
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
112 }
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
113 #else
296
5a85142df236 10% smaller object file, 2% slower
michael
parents: 295
diff changeset
114 for(i=0; i<20; i+=5){
288
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
115 R0(a,b,c,d,e,0+i); R0(e,a,b,c,d,1+i); R0(d,e,a,b,c,2+i); R0(c,d,e,a,b,3+i); R0(b,c,d,e,a,4+i);
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
116 }
296
5a85142df236 10% smaller object file, 2% slower
michael
parents: 295
diff changeset
117 for(; i<40; i+=5){
288
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
118 R2(a,b,c,d,e,0+i); R2(e,a,b,c,d,1+i); R2(d,e,a,b,c,2+i); R2(c,d,e,a,b,3+i); R2(b,c,d,e,a,4+i);
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
119 }
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
120 for(; i<60; i+=5){
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
121 R3(a,b,c,d,e,0+i); R3(e,a,b,c,d,1+i); R3(d,e,a,b,c,2+i); R3(c,d,e,a,b,3+i); R3(b,c,d,e,a,4+i);
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
122 }
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
123 for(; i<80; i+=5){
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
124 R4(a,b,c,d,e,0+i); R4(e,a,b,c,d,1+i); R4(d,e,a,b,c,2+i); R4(c,d,e,a,b,3+i); R4(b,c,d,e,a,4+i);
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
125 }
299
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
126 #endif
288
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
127 state[0] += a;
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
128 state[1] += b;
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
129 state[2] += c;
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
130 state[3] += d;
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
131 state[4] += e;
299
5c84cfeb69a9 2 other variants of how to implement the core part
michael
parents: 298
diff changeset
132 #endif
288
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
133 }
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
134
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
135 void av_sha1_init(AVSHA1* context){
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
136 context->state[0] = 0x67452301;
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
137 context->state[1] = 0xEFCDAB89;
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
138 context->state[2] = 0x98BADCFE;
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
139 context->state[3] = 0x10325476;
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
140 context->state[4] = 0xC3D2E1F0;
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
141 context->count = 0;
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
142 }
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
143
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
144 void av_sha1_update(AVSHA1* context, uint8_t* data, unsigned int len){
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
145 unsigned int i, j;
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
146
294
97f5321b12ad make count count bytes not bits (this is simpler and leads to a very slightly smaller object file)
michael
parents: 293
diff changeset
147 j = context->count & 63;
97f5321b12ad make count count bytes not bits (this is simpler and leads to a very slightly smaller object file)
michael
parents: 293
diff changeset
148 context->count += len;
288
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
149 if ((j + len) > 63) {
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
150 memcpy(&context->buffer[j], data, (i = 64-j));
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
151 transform(context->state, context->buffer);
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
152 for ( ; i + 63 < len; i += 64) {
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
153 transform(context->state, &data[i]);
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
154 }
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
155 }
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
156 else i = 0;
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
157 memcpy(&context->buffer[j], &data[i], len - i);
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
158 }
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
159
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
160 void av_sha1_final(AVSHA1* context, uint8_t digest[20]){
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
161 int i;
294
97f5321b12ad make count count bytes not bits (this is simpler and leads to a very slightly smaller object file)
michael
parents: 293
diff changeset
162 uint64_t finalcount= be2me_64(context->count<<3);
288
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
163
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
164 av_sha1_update(context, "\200", 1);
294
97f5321b12ad make count count bytes not bits (this is simpler and leads to a very slightly smaller object file)
michael
parents: 293
diff changeset
165 while ((context->count & 63) != 56) {
288
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
166 av_sha1_update(context, "\0", 1);
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
167 }
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
168 av_sha1_update(context, &finalcount, 8); /* Should cause a transform() */
295
e96e6ae1c3fa very slightly smaller object file
michael
parents: 294
diff changeset
169 for(i=0; i<5; i++)
e96e6ae1c3fa very slightly smaller object file
michael
parents: 294
diff changeset
170 ((uint32_t*)digest)[i]= be2me_32(context->state[i]);
288
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
171 }
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
172
289
18a98b19af3f explain how to test it
michael
parents: 288
diff changeset
173 // use the following to test
292
d1f03d9014cb dont recommand testing with -O3
michael
parents: 291
diff changeset
174 // gcc -DTEST -DHAVE_AV_CONFIG_H -I.. sha1.c -O2 -W -Wall -o sha1 && time ./sha1
288
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
175 #ifdef TEST
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
176 #include <stdio.h>
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
177 #undef printf
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
178
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
179 int main(){
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
180 int i, k;
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
181 AVSHA1 context;
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
182 unsigned char digest[20];
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
183
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
184 for(k=0; k<3; k++){
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
185 av_sha1_init(&context);
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
186 if(k==0)
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
187 av_sha1_update(&context, "abc", 3);
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
188 else if(k==1)
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
189 av_sha1_update(&context, "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", 56);
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
190 else
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
191 for(i=0; i<1000*1000; i++)
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
192 av_sha1_update(&context, "a", 1);
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
193 av_sha1_final(&context, digest);
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
194 for (i = 0; i < 20; i++)
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
195 printf("%02X", digest[i]);
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
196 putchar('\n');
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
197 }
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
198 //Test Vectors (from FIPS PUB 180-1)
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
199 printf("A9993E36 4706816A BA3E2571 7850C26C 9CD0D89D\n"
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
200 "84983E44 1C3BD26E BAAE4AA1 F95129E5 E54670F1\n"
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
201 "34AA973C D4C4DAA4 F61EEB2B DBAD2731 6534016F\n");
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
202
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
203 return 0;
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
204 }
c82b7b95e69d simple SHA-1 implementation
michael
parents:
diff changeset
205 #endif