-
Notifications
You must be signed in to change notification settings - Fork 4
/
hmacsha1.c
211 lines (176 loc) · 4.8 KB
/
hmacsha1.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
/*
* Adapted from hmac.c (HMAC-MD5) for use by SHA1.
* by <mcr@sandelman.ottawa.on.ca>. Test cases from RFC2202.
*
*/
/*
** Function: hmac_sha1
*/
#include "ident.h"
#include "libradius.h"
#include "sha1.h"
/*
uint8_t* text; pointer to data stream
int text_len; length of data stream
uint8_t* key; pointer to authentication key
int key_len; length of authentication key
uint8_t* digest; caller digest to be filled in
*/
#ifdef HMAC_SHA1_DATA_PROBLEMS
unsigned int sha1_data_problems = 0;
#endif
void
fr_hmac_sha1(const uint8_t *text, int text_len,
const uint8_t *key, int key_len,
uint8_t *digest)
{
fr_SHA1_CTX context;
uint8_t k_ipad[65]; /* inner padding -
* key XORd with ipad
*/
uint8_t k_opad[65]; /* outer padding -
* key XORd with opad
*/
uint8_t tk[20];
int i;
/* if key is longer than 64 bytes reset it to key=SHA1(key) */
if (key_len > 64) {
fr_SHA1_CTX tctx;
fr_SHA1Init(&tctx);
fr_SHA1Update(&tctx, key, key_len);
fr_SHA1Final(tk, &tctx);
key = tk;
key_len = 20;
}
#ifdef HMAC_SHA1_DATA_PROBLEMS
if(sha1_data_problems)
{
int j,k;
printf("\nhmac-sha1 key(%d): ", key_len);
j=0; k=0;
for (i = 0; i < key_len; i++) {
if(j==4) {
printf("_");
j=0;
}
j++;
printf("%02x", key[i]);
}
printf("\nDATA: (%d) ",text_len);
j=0; k=0;
for (i = 0; i < text_len; i++) {
if(k==20) {
printf("\n ");
k=0;
j=0;
}
if(j==4) {
printf("_");
j=0;
}
k++;
j++;
printf("%02x", text[i]);
}
printf("\n");
}
#endif
/*
* the HMAC_SHA1 transform looks like:
*
* SHA1(K XOR opad, SHA1(K XOR ipad, text))
*
* where K is an n byte key
* ipad is the byte 0x36 repeated 64 times
* opad is the byte 0x5c repeated 64 times
* and text is the data being protected
*/
/* start out by storing key in pads */
memset( k_ipad, 0, sizeof(k_ipad));
memset( k_opad, 0, sizeof(k_opad));
memcpy( k_ipad, key, key_len);
memcpy( k_opad, key, key_len);
/* XOR key with ipad and opad values */
for (i = 0; i < 64; i++) {
k_ipad[i] ^= 0x36;
k_opad[i] ^= 0x5c;
}
/*
* perform inner SHA1
*/
fr_SHA1Init(&context); /* init context for 1st
* pass */
fr_SHA1Update(&context, k_ipad, 64); /* start with inner pad */
fr_SHA1Update(&context, text, text_len); /* then text of datagram */
fr_SHA1Final(digest, &context); /* finish up 1st pass */
/*
* perform outer MD5
*/
fr_SHA1Init(&context); /* init context for 2nd
* pass */
fr_SHA1Update(&context, k_opad, 64); /* start with outer pad */
fr_SHA1Update(&context, digest, 20); /* then results of 1st
* hash */
fr_SHA1Final(digest, &context); /* finish up 2nd pass */
#ifdef HMAC_SHA1_DATA_PROBLEMS
if(sha1_data_problems)
{
int j;
printf("\nhmac-sha1 mac(20): ");
j=0;
for (i = 0; i < 20; i++) {
if(j==4) {
printf("_");
j=0;
}
j++;
printf("%02x", digest[i]);
}
printf("\n");
}
#endif
}
/*
Test Vectors (Trailing '\0' of a character string not included in test):
key = "Jefe"
data = "what do ya want for nothing?"
data_len = 28 bytes
digest = effcdf6ae5eb2fa2d27416d5f184df9c259a7c79
key = 0xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
key_len 16 bytes
data = 0xDDDDDDDDDDDDDDDDDDDD...
..DDDDDDDDDDDDDDDDDDDD...
..DDDDDDDDDDDDDDDDDDDD...
..DDDDDDDDDDDDDDDDDDDD...
..DDDDDDDDDDDDDDDDDDDD
data_len = 50 bytes
digest = 0x56be34521d144c88dbb8c733f0e8b3f6
*/
#ifdef TESTING
/*
* cc -DTESTING -I ../include/ hmac.c sha1.c -o hmac
*
* ./hmac Jefe "what do ya want for nothing?"
*/
#include <stdlib.h>
int main(int argc, char **argv)
{
uint8_t digest[20];
char *key;
int key_len;
char *text;
int text_len;
int i;
key = argv[1];
key_len = strlen(key);
text = argv[2];
text_len = strlen(text);
fr_hmac_sha1(text, text_len, key, key_len, digest);
for (i = 0; i < 20; i++) {
printf("%02x", digest[i]);
}
printf("\n");
exit(0);
return 0;
}
#endif