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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
|
/* See LICENSE file for copyright and license details. */
#include "hmac.h"
#include "../digest.h"
/**
* The outer pad pattern
*/
#define OUTER_PAD 0x5C
/**
* The inner pad pattern
*/
#define INNER_PAD 0x36
static void *(*volatile my_explicit_memset)(void *, int, size_t) = memset;
static __attribute__((optimize("-O0"))) void
my_explicit_bzero(void *ptr, size_t size)
{
(*my_explicit_memset)(ptr, 0, size);
}
/**
* Change the HMAC-hashing key on the state
*
* @param state The state that should be reset
* @param key The new key
* @param key_length The length of key, in bits
* @return Zero on success, -1 on error
*/
int
libkeccak_hmac_set_key(libkeccak_hmac_state_t *restrict state, const char *restrict key, size_t key_length)
{
size_t i, size, new_key_length, key_bytes;
char *old;
size = (size_t)(state->sponge.r) > key_length ? (size_t)(state->sponge.r) : key_length;
new_key_length = size;
size = (size + 7) >> 3;
key_bytes = (key_length + 7) >> 3;
if (size != key_bytes) {
state->key_opad = realloc(old = state->key_opad, 2 * size);
if (!state->key_opad)
return state->key_opad = old, -1;
state->key_ipad = state->key_opad + size / sizeof(char);
}
memcpy(state->key_opad, key, key_bytes);
if (key_length & 7)
state->key_opad[(key_bytes >> 3) - 1] &= (1 << (key_length & 7)) - 1;
if ((size_t)(state->sponge.r) > key_length)
__builtin_memset(state->key_opad + key_bytes / sizeof(char), 0, size - key_bytes);
for (i = 0; i < size; i++) {
state->key_ipad[i] = state->key_opad[i] ^ INNER_PAD;
state->key_opad[i] ^= OUTER_PAD;
}
state->key_length = new_key_length;
return 0;
}
/**
* Wipe sensitive data wihout freeing any data
*
* @param state The state that should be wipe
*/
void
libkeccak_hmac_wipe(volatile libkeccak_hmac_state_t *restrict state)
{
volatile char *restrict key_pads;
size_t i, size;
key_pads = state->key_opad;
size = 2 * ((state->key_length + 7) >> 3);
libkeccak_state_wipe(&state->sponge);
for (i = 0; i < size; i++)
key_pads[i] = 0;
state->leftover = 0;
__builtin_memset(state->buffer, 0, state->buffer_size);
}
/**
* Make a copy of an HMAC hashing-state
*
* @param dest The slot for the duplicate, must not be initialised (memory leak otherwise)
* @param src The state to duplicate
* @return Zero on success, -1 on error
*/
int
libkeccak_hmac_copy(libkeccak_hmac_state_t *restrict dest, const libkeccak_hmac_state_t *restrict src)
{
size_t size;
dest->key_opad = NULL;
dest->key_ipad = NULL;
if (libkeccak_state_copy(&dest->sponge, &src->sponge) < 0)
return -1;
dest->key_length = src->key_length;
dest->leftover = src->leftover;
size = (src->key_length + 7) >> 3;
dest->key_opad = malloc(2 * size);
if (dest->key_opad == NULL)
return libkeccak_state_destroy(&dest->sponge), -1;
dest->key_ipad = dest->key_opad + size / sizeof(char);
memcpy(dest->key_opad, src->key_opad, size);
memcpy(dest->key_ipad, src->key_ipad, size);
return 0;
}
/**
* Unmarshal a `libkeccak_hmac_state_t` from a buffer
*
* @param state The slot for the unmarshalled state, must not be initialised (memory leak otherwise)
* @param data The input buffer
* @return The number of bytes read from `data`, 0 on error
*/
size_t
libkeccak_hmac_unmarshal(libkeccak_hmac_state_t *restrict state, const char *restrict data)
{
size_t parsed, size, i;
state->key_opad = NULL;
state->key_ipad = NULL;
parsed = libkeccak_state_unmarshal(&state->sponge, data);
if (parsed == 0)
return 0;
data += parsed / sizeof(char);
state->key_length = *(const size_t *)data;
data += sizeof(size_t) / sizeof(char);
size = (state->key_length + 7) >> 3;
state->key_opad = malloc(2 * size);
if (state->key_opad == NULL)
return libkeccak_state_destroy(&state->sponge), -1;
memcpy(state->key_opad, data, size);
data += size / sizeof(char);
if (data[0]) {
state->key_ipad = state->key_opad + size / sizeof(char);
memcpy(state->key_ipad, state->key_opad, size);
for (i = 0; i < size / sizeof(char); i++)
state->key_ipad[i] ^= (char)(OUTER_PAD ^ INNER_PAD);
}
state->leftover = data[1];
state->buffer = NULL;
state->buffer_size = 0;
return parsed + sizeof(size_t) + size + 2 * sizeof(char);
}
/**
* Absorb more, or the first part, of the message
* without wiping sensitive data when possible
*
* @param state The hashing state
* @param msg The partial message
* @param msglen The length of the partial message, in bytes
* @return Zero on success, -1 on error
*/
int
libkeccak_hmac_fast_update(libkeccak_hmac_state_t *restrict state, const char *restrict msg, size_t msglen)
{
char *old;
size_t i;
int n, cn;
if (state->key_ipad) {
if (libkeccak_fast_update(&state->sponge, state->key_ipad, state->key_length >> 3) < 0)
return -1;
if (state->key_length & 7)
state->leftover = state->key_ipad[state->key_length >> 3];
state->key_ipad = NULL;
}
if (!msg || !msglen)
return 0;
if (!(state->key_length & 7))
return libkeccak_fast_update(&state->sponge, msg, msglen);
if (msglen != state->buffer_size) {
state->buffer = realloc(old = state->buffer, msglen);
if (!state->buffer)
return state->buffer = old, -1;
state->buffer_size = msglen;
}
n = (int)(state->key_length & 7);
cn = 8 - n;
for (i = 1; i < msglen; i++)
state->buffer[i] = (((unsigned char)(msg[i - 1])) >> cn) | (msg[i] << n);
state->buffer[0] = (state->leftover & ((1 << n) - 1)) | (msg[0] << n);
state->leftover = ((unsigned char)(msg[msglen - 1])) >> cn;
return libkeccak_fast_update(&state->sponge, state->buffer, msglen);
}
/**
* Absorb more, or the first part, of the message
* and wipe sensitive data when possible
*
* @param state The hashing state
* @param msg The partial message
* @param msglen The length of the partial message, in bytes
* @return Zero on success, -1 on error
*/
int
libkeccak_hmac_update(libkeccak_hmac_state_t *restrict state, const char *restrict msg, size_t msglen)
{
size_t i;
int n, cn, r;
if (state->key_ipad) {
if (libkeccak_update(&state->sponge, state->key_ipad, state->key_length >> 3) < 0)
return -1;
if (state->key_length & 7)
state->leftover = state->key_ipad[state->key_length >> 3];
state->key_ipad = NULL;
}
if (!msg || !msglen)
return 0;
if (!(state->key_length & 7))
return libkeccak_update(&state->sponge, msg, msglen);
if (msglen != state->buffer_size) {
free(state->buffer);
state->buffer = malloc(state->buffer_size = msglen);
if (!state->buffer)
return -1;
}
n = (int)(state->key_length & 7);
cn = 8 - n;
for (i = 1; i < msglen; i++)
state->buffer[i] = (((unsigned char)(msg[i - 1])) >> cn) | (msg[i] << n);
state->buffer[0] = (state->leftover & ((1 << n) - 1)) | (msg[0] << n);
state->leftover = ((unsigned char)(msg[msglen - 1])) >> cn;
r = libkeccak_update(&state->sponge, state->buffer, msglen);
my_explicit_bzero(state->buffer, msglen);
return r;
}
/**
* Absorb the last part of the message and fetch the hash
* without wiping sensitive data when possible
*
* You may use `&state->sponge` for continued squeezing
*
* @param state The hashing state
* @param msg The rest of the message, may be `NULL`, may be modified
* @param msglen The length of the partial message
* @param bits The number of bits at the end of the message not covered by `msglen`
* @param suffix The suffix concatenate to the message, only '1':s and '0':s, and NUL-termination
* @param hashsum Output parameter for the hashsum, may be `NULL`
* @return Zero on success, -1 on error
*/
int
libkeccak_hmac_fast_digest(libkeccak_hmac_state_t *restrict state, const char *restrict msg, size_t msglen,
size_t bits, const char *restrict suffix, char *restrict hashsum)
{
size_t hashsize = state->sponge.n >> 3;
char *tmp = malloc(((state->sponge.n + 7) >> 3) * sizeof(char));
char leftover[2];
size_t newlen;
if (!tmp)
return -1;
if (!(state->key_length & 7)) {
if (libkeccak_fast_digest(&state->sponge, msg, msglen, bits, suffix, tmp) < 0)
goto fail;
goto stage_2;
}
if (libkeccak_hmac_fast_update(state, msg, msglen) < 0)
goto fail;
leftover[0] = state->leftover;
if (bits) {
leftover[0] |= msg[msglen] >> (state->key_length & 7);
leftover[1] = ((unsigned char)(msg[msglen])) << (8 - (state->key_length & 7));
}
newlen = (state->key_length & 7) + bits;
if (libkeccak_fast_digest(&state->sponge, leftover, newlen >> 3, newlen & 7, suffix, tmp) < 0)
goto fail;
stage_2:
bits = state->sponge.n & 7;
state->key_ipad = state->key_opad;
if (libkeccak_hmac_fast_update(state, NULL, 0) < 0)
goto fail;
if (!(state->key_length & 7)) {
if (libkeccak_fast_digest(&state->sponge, tmp, hashsize, bits, suffix, hashsum) < 0)
goto fail;
goto stage_3;
}
if (libkeccak_hmac_fast_update(state, tmp, hashsize) < 0)
goto fail;
leftover[0] = state->leftover;
if (bits) {
leftover[0] |= tmp[hashsize] >> (state->key_length & 7);
leftover[1] = ((unsigned char)(tmp[hashsize])) << (8 - (state->key_length & 7));
}
newlen = (state->key_length & 7) + bits;
if (libkeccak_fast_digest(&state->sponge, leftover, newlen >> 3, newlen & 7, suffix, tmp) < 0)
goto fail;
stage_3:
free(tmp);
return 0;
fail:
free(tmp);
return -1;
}
/**
* Absorb the last part of the message and fetch the hash
* and wipe sensitive data when possible
*
* You may use `&state->sponge` for continued squeezing
*
* @param state The hashing state
* @param msg The rest of the message, may be `NULL`, may be modified
* @param msglen The length of the partial message
* @param bits The number of bits at the end of the message not covered by `msglen`
* @param suffix The suffix concatenate to the message, only '1':s and '0':s, and NUL-termination
* @param hashsum Output parameter for the hashsum, may be `NULL`
* @return Zero on success, -1 on error
*/
int
libkeccak_hmac_digest(libkeccak_hmac_state_t *restrict state, const char *restrict msg, size_t msglen,
size_t bits, const char *restrict suffix, char *restrict hashsum)
{
size_t hashsize = state->sponge.n >> 3;
char *tmp = malloc(((state->sponge.n + 7) >> 3) * sizeof(char));
char leftover[2];
size_t newlen;
if (!tmp)
return -1;
if (!(state->key_length & 7)) {
if (libkeccak_digest(&state->sponge, msg, msglen, bits, suffix, tmp) < 0)
goto fail;
goto stage_2;
}
if (libkeccak_hmac_update(state, msg, msglen) < 0)
goto fail;
leftover[0] = state->leftover;
if (bits) {
leftover[0] |= msg[msglen] >> (state->key_length & 7);
leftover[1] = ((unsigned char)(msg[msglen])) << (8 - (state->key_length & 7));
}
newlen = (state->key_length & 7) + bits;
if (libkeccak_digest(&state->sponge, leftover, newlen >> 3, newlen & 7, suffix, tmp) < 0)
goto fail;
stage_2:
bits = state->sponge.n & 7;
state->key_ipad = state->key_opad;
if (libkeccak_hmac_update(state, NULL, 0) < 0)
goto fail;
if (!(state->key_length & 7)) {
if (libkeccak_digest(&state->sponge, tmp, hashsize, bits, suffix, hashsum) < 0)
goto fail;
goto stage_3;
}
if (libkeccak_hmac_update(state, tmp, hashsize) < 0)
goto fail;
leftover[0] = state->leftover;
if (bits) {
leftover[0] |= tmp[hashsize] >> (state->key_length & 7);
leftover[1] = ((unsigned char)(tmp[hashsize])) << (8 - (state->key_length & 7));
}
newlen = (state->key_length & 7) + bits;
if (libkeccak_digest(&state->sponge, leftover, newlen >> 3, newlen & 7, suffix, tmp) < 0)
goto fail;
stage_3:
my_explicit_bzero(tmp, ((state->sponge.n + 7) >> 3) * sizeof(char));
free(tmp);
return 0;
fail:
my_explicit_bzero(tmp, ((state->sponge.n + 7) >> 3) * sizeof(char));
free(tmp);
return -1;
}
|