]> git.sesse.net Git - ffmpeg/blob - libavutil/sha1.c
8553707b0ccdab464c9fa4ed820abda417c6be93
[ffmpeg] / libavutil / sha1.c
1 // SHA-1 code Copyright 2007 Michael Nidermayer <michaelni@gmx.at>
2 // license LGPL
3 // based on public domain SHA-1 code by Steve Reid <steve@edmweb.com>
4
5 #include "common.h"
6 #include "sha1.h"
7
8 typedef struct AVSHA1 {
9     uint32_t state[5];
10     uint64_t count;
11     uint8_t buffer[64];
12 } AVSHA1;
13
14 #define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits))))
15
16 /* blk0() and blk() perform the initial expand. */
17 /* I got the idea of expanding during the round function from SSLeay */
18 #define blk0(i) (block[i])
19 #define blk(i) (block[i])
20
21 /* (R0+R1), R2, R3, R4 are the different operations used in SHA1 */
22 #define R0(v,w,x,y,z,i) z+=((w&(x^y))^y)    +blk0(i)+0x5A827999+rol(v,5);w=rol(w,30);
23 #define R1(v,w,x,y,z,i) z+=((w&(x^y))^y)    +blk (i)+0x5A827999+rol(v,5);w=rol(w,30);
24 #define R2(v,w,x,y,z,i) z+=( w^x     ^y)    +blk (i)+0x6ED9EBA1+rol(v,5);w=rol(w,30);
25 #define R3(v,w,x,y,z,i) z+=(((w|x)&y)|(w&x))+blk (i)+0x8F1BBCDC+rol(v,5);w=rol(w,30);
26 #define R4(v,w,x,y,z,i) z+=( w^x     ^y)    +blk (i)+0xCA62C1D6+rol(v,5);w=rol(w,30);
27
28 /* Hash a single 512-bit block. This is the core of the algorithm. */
29
30 static void transform(uint32_t state[5], uint8_t buffer[64]){
31     unsigned int a, b, c, d, e, i;
32     uint32_t block[80];
33
34     for(i=0; i<16; i++)
35         block[i]= be2me_32(((uint32_t*)buffer)[i]);
36     for(;i<80; i++)
37         block[i]= rol(block[i-3]^block[i-8]^block[i-14]^block[i-16],1);
38
39     /* Copy context->state[] to working vars */
40     a = state[0];
41     b = state[1];
42     c = state[2];
43     d = state[3];
44     e = state[4];
45
46     for(i=0; i<20; i+=5){
47         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);
48     }
49     for(; i<40; i+=5){
50         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);
51     }
52     for(; i<60; i+=5){
53         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);
54     }
55     for(; i<80; i+=5){
56         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);
57     }
58
59     state[0] += a;
60     state[1] += b;
61     state[2] += c;
62     state[3] += d;
63     state[4] += e;
64 }
65
66 void av_sha1_init(AVSHA1* context){
67     context->state[0] = 0x67452301;
68     context->state[1] = 0xEFCDAB89;
69     context->state[2] = 0x98BADCFE;
70     context->state[3] = 0x10325476;
71     context->state[4] = 0xC3D2E1F0;
72     context->count    = 0;
73 }
74
75 void av_sha1_update(AVSHA1* context, uint8_t* data, unsigned int len){
76     unsigned int i, j;
77
78     j = context->count & 63;
79     context->count += len;
80     if ((j + len) > 63) {
81         memcpy(&context->buffer[j], data, (i = 64-j));
82         transform(context->state, context->buffer);
83         for ( ; i + 63 < len; i += 64) {
84             transform(context->state, &data[i]);
85         }
86     }
87     else i = 0;
88     memcpy(&context->buffer[j], &data[i], len - i);
89 }
90
91 void av_sha1_final(AVSHA1* context, uint8_t digest[20]){
92     int i;
93     uint64_t finalcount= be2me_64(context->count<<3);
94
95     av_sha1_update(context, "\200", 1);
96     while ((context->count & 63) != 56) {
97         av_sha1_update(context, "\0", 1);
98     }
99     av_sha1_update(context, &finalcount, 8);  /* Should cause a transform() */
100     for(i=0; i<5; i++)
101         ((uint32_t*)digest)[i]= be2me_32(context->state[i]);
102 }
103
104 // use the following to test
105 // gcc -DTEST -DHAVE_AV_CONFIG_H -I.. sha1.c -O2 -W -Wall -o sha1 && time ./sha1
106 #ifdef TEST
107 #include <stdio.h>
108 #undef printf
109
110 int main(){
111     int i, k;
112     AVSHA1 context;
113     unsigned char digest[20];
114
115     for(k=0; k<3; k++){
116         av_sha1_init(&context);
117         if(k==0)
118             av_sha1_update(&context, "abc", 3);
119         else if(k==1)
120             av_sha1_update(&context, "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", 56);
121         else
122             for(i=0; i<1000*1000; i++)
123                 av_sha1_update(&context, "a", 1);
124         av_sha1_final(&context, digest);
125         for (i = 0; i < 20; i++)
126             printf("%02X", digest[i]);
127         putchar('\n');
128     }
129     //Test Vectors (from FIPS PUB 180-1)
130     printf("A9993E36 4706816A BA3E2571 7850C26C 9CD0D89D\n"
131            "84983E44 1C3BD26E BAAE4AA1 F95129E5 E54670F1\n"
132            "34AA973C D4C4DAA4 F61EEB2B DBAD2731 6534016F\n");
133
134     return 0;
135 }
136 #endif