forked from ANSSI-FR/libdrbg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsm3.c
360 lines (296 loc) · 9.2 KB
/
sm3.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
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
/*
* Copyright (C) 2022 - This file is part of libdrbg project
*
* Author: Ryad BENADJILA <ryad.benadjila@ssi.gouv.fr>
* Contributor: Arnaud EBALARD <arnaud.ebalard@ssi.gouv.fr>
*
* This software is licensed under a dual BSD and GPL v2 license.
* See LICENSE file at the root folder of the project.
*/
#include "libhash_config.h"
#ifdef WITH_HASH_SM3
#include "sm3.h"
/*
* 32-bit integer manipulation macros (big endian)
*/
#ifndef GET_UINT32_BE
#define GET_UINT32_BE(n, b, i) \
do { \
(n) = ( ((uint32_t) (b)[(i) ]) << 24 ) \
| ( ((uint32_t) (b)[(i) + 1]) << 16 ) \
| ( ((uint32_t) (b)[(i) + 2]) << 8 ) \
| ( ((uint32_t) (b)[(i) + 3]) ); \
} while( 0 )
#endif
#ifndef PUT_UINT32_BE
#define PUT_UINT32_BE(n, b, i) \
do { \
(b)[(i) ] = (uint8_t) ( (n) >> 24 ); \
(b)[(i) + 1] = (uint8_t) ( (n) >> 16 ); \
(b)[(i) + 2] = (uint8_t) ( (n) >> 8 ); \
(b)[(i) + 3] = (uint8_t) ( (n) ); \
} while( 0 )
#endif
/*
* 64-bit integer manipulation macros (big endian)
*/
#ifndef PUT_UINT64_BE
#define PUT_UINT64_BE(n,b,i) \
do { \
(b)[(i) ] = (uint8_t) ( (n) >> 56 ); \
(b)[(i) + 1] = (uint8_t) ( (n) >> 48 ); \
(b)[(i) + 2] = (uint8_t) ( (n) >> 40 ); \
(b)[(i) + 3] = (uint8_t) ( (n) >> 32 ); \
(b)[(i) + 4] = (uint8_t) ( (n) >> 24 ); \
(b)[(i) + 5] = (uint8_t) ( (n) >> 16 ); \
(b)[(i) + 6] = (uint8_t) ( (n) >> 8 ); \
(b)[(i) + 7] = (uint8_t) ( (n) ); \
} while( 0 )
#endif /* PUT_UINT64_BE */
static const uint32_t SM3_Tj_low = 0x79cc4519;
static const uint32_t SM3_Tj_high = 0x7a879d8a;
/* Boolean functions FF_j and GG_j for 0 <= j <= 15 */
#define FF_j_low(X, Y, Z) (((uint32_t)(X)) ^ ((uint32_t)(Y)) ^ ((uint32_t)(Z)))
#define GG_j_low(X, Y, Z) (((uint32_t)(X)) ^ ((uint32_t)(Y)) ^ ((uint32_t)(Z)))
/* Boolean functions FF_j and GG_j for 16 <= j <= 63 */
#define FF_j_high(X, Y, Z) ((((uint32_t)(X)) & ((uint32_t)(Y))) | \
(((uint32_t)(X)) & ((uint32_t)(Z))) | \
(((uint32_t)(Y)) & ((uint32_t)(Z))))
#define GG_j_high(X, Y, Z) ((((uint32_t)(X)) & ((uint32_t)(Y))) | \
((~((uint32_t)(X))) & ((uint32_t)(Z))))
/* 32-bit bitwise cyclic shift. Only support shifts value y < 32 */
#define _SM3_ROTL_(x, y) ((((uint32_t)(x)) << (y)) | \
(((uint32_t)(x)) >> ((sizeof(uint32_t) * 8) - (y))))
#define SM3_ROTL(x, y) ((((y) < (sizeof(uint32_t) * 8)) && ((y) > 0)) ? (_SM3_ROTL_(x, y)) : (x))
/* Permutation Functions P_0 and P_1 */
#define SM3_P_0(X) (((uint32_t)X) ^ SM3_ROTL((X), 9) ^ SM3_ROTL((X), 17))
#define SM3_P_1(X) (((uint32_t)X) ^ SM3_ROTL((X), 15) ^ SM3_ROTL((X), 23))
/* SM3 Iterative Compression Process
* NOTE: ctx and data sanity checks are performed by the caller (this is an internal function)
*/
static int sm3_process(sm3_context *ctx, const uint8_t data[SM3_BLOCK_SIZE])
{
uint32_t A, B, C, D, E, F, G, H;
uint32_t SS1, SS2, TT1, TT2;
uint32_t W[68 + 64];
unsigned int j;
int ret;
/* Message Expansion Function ME */
for (j = 0; j < 16; j++) {
GET_UINT32_BE(W[j], data, 4 * j);
}
for (j = 16; j < 68; j++) {
W[j] = SM3_P_1(W[j - 16] ^ W[j - 9] ^ (SM3_ROTL(W[j - 3], 15))) ^
(SM3_ROTL(W[j - 13], 7)) ^ W[j - 6];
}
for (j = 0; j < 64; j++) {
W[j + 68] = W[j] ^ W[j + 4];
}
/* Compression Function CF */
A = ctx->sm3_state[0];
B = ctx->sm3_state[1];
C = ctx->sm3_state[2];
D = ctx->sm3_state[3];
E = ctx->sm3_state[4];
F = ctx->sm3_state[5];
G = ctx->sm3_state[6];
H = ctx->sm3_state[7];
/*
* Note: in a previous version of the code, we had two loops for j from
* 0 to 15 and then from 16 to 63 with SM3_ROTL(SM3_Tj_low, (j & 0x1F))
* inside but clang-12 was smart enough to detect cases where SM3_ROTL
* macro is useless. On the other side, clang address sanitizer does not
* allow to remove the check for too high shift values in the macro
* itself. Creating 3 distinct loops instead of 2 to remove the & 0x1F
* is sufficient to satisfy everyone.
*/
for (j = 0; j < 16; j++) {
SS1 = SM3_ROTL(SM3_ROTL(A, 12) + E + SM3_ROTL(SM3_Tj_low, j),7);
SS2 = SS1 ^ SM3_ROTL(A, 12);
TT1 = FF_j_low(A, B, C) + D + SS2 + W[j + 68];
TT2 = GG_j_low(E, F, G) + H + SS1 + W[j];
D = C;
C = SM3_ROTL(B, 9);
B = A;
A = TT1;
H = G;
G = SM3_ROTL(F, 19);
F = E;
E = SM3_P_0(TT2);
}
for (j = 16; j < 32; j++) {
SS1 = SM3_ROTL(SM3_ROTL(A, 12) + E + SM3_ROTL(SM3_Tj_high, j), 7);
SS2 = SS1 ^ SM3_ROTL(A, 12);
TT1 = FF_j_high(A, B, C) + D + SS2 + W[j + 68];
TT2 = GG_j_high(E, F, G) + H + SS1 + W[j];
D = C;
C = SM3_ROTL(B, 9);
B = A;
A = TT1;
H = G;
G = SM3_ROTL(F, 19);
F = E;
E = SM3_P_0(TT2);
}
for (j = 32; j < 64; j++) {
SS1 = SM3_ROTL(SM3_ROTL(A, 12) + E + SM3_ROTL(SM3_Tj_high, (j - 32)), 7);
SS2 = SS1 ^ SM3_ROTL(A, 12);
TT1 = FF_j_high(A, B, C) + D + SS2 + W[j + 68];
TT2 = GG_j_high(E, F, G) + H + SS1 + W[j];
D = C;
C = SM3_ROTL(B, 9);
B = A;
A = TT1;
H = G;
G = SM3_ROTL(F, 19);
F = E;
E = SM3_P_0(TT2);
}
ctx->sm3_state[0] ^= A;
ctx->sm3_state[1] ^= B;
ctx->sm3_state[2] ^= C;
ctx->sm3_state[3] ^= D;
ctx->sm3_state[4] ^= E;
ctx->sm3_state[5] ^= F;
ctx->sm3_state[6] ^= G;
ctx->sm3_state[7] ^= H;
ret = 0;
return ret;
}
/* Init hash function. Initialize state to SM3 defined IV. */
int sm3_init(sm3_context *ctx)
{
int ret;
MUST_HAVE(ctx != NULL, ret, err);
ctx->sm3_total = 0;
ctx->sm3_state[0] = 0x7380166F;
ctx->sm3_state[1] = 0x4914B2B9;
ctx->sm3_state[2] = 0x172442D7;
ctx->sm3_state[3] = 0xDA8A0600;
ctx->sm3_state[4] = 0xA96F30BC;
ctx->sm3_state[5] = 0x163138AA;
ctx->sm3_state[6] = 0xE38DEE4D;
ctx->sm3_state[7] = 0xB0FB0E4E;
/* Tell that we are initialized */
ctx->magic = SM3_HASH_MAGIC;
ret = 0;
err:
return ret;
}
/* Update hash function */
int sm3_update(sm3_context *ctx, const uint8_t *input, uint32_t ilen)
{
const uint8_t *data_ptr = input;
uint32_t remain_ilen = ilen;
uint16_t fill;
uint8_t left;
int ret;
MUST_HAVE((input != NULL) || (ilen == 0), ret, err);
SM3_HASH_CHECK_INITIALIZED(ctx, ret, err);
/* Nothing to process, return */
if (ilen == 0) {
ret = 0;
goto err;
}
/* Get what's left in our local buffer */
left = (ctx->sm3_total & 0x3F);
fill = (uint16_t)(SM3_BLOCK_SIZE - left);
ctx->sm3_total += ilen;
if ((left > 0) && (remain_ilen >= fill)) {
/* Copy data at the end of the buffer */
memcpy(ctx->sm3_buffer + left, data_ptr, fill);
ret = sm3_process(ctx, ctx->sm3_buffer); EG(ret, err);
data_ptr += fill;
remain_ilen -= fill;
left = 0;
}
while (remain_ilen >= SM3_BLOCK_SIZE) {
ret = sm3_process(ctx, data_ptr); EG(ret, err);
data_ptr += SM3_BLOCK_SIZE;
remain_ilen -= SM3_BLOCK_SIZE;
}
if (remain_ilen > 0) {
memcpy(ctx->sm3_buffer + left, data_ptr, remain_ilen);
}
ret = 0;
err:
return ret;
}
/* Finalize */
int sm3_final(sm3_context *ctx, uint8_t output[SM3_DIGEST_SIZE])
{
unsigned int block_present = 0;
uint8_t last_padded_block[2 * SM3_BLOCK_SIZE];
int ret;
MUST_HAVE((output != NULL), ret, err);
SM3_HASH_CHECK_INITIALIZED(ctx, ret, err);
/* Fill in our last block with zeroes */
memset(last_padded_block, 0, sizeof(last_padded_block));
/* This is our final step, so we proceed with the padding */
block_present = (ctx->sm3_total % SM3_BLOCK_SIZE);
if (block_present != 0) {
/* Copy what's left in our temporary context buffer */
memcpy(last_padded_block, ctx->sm3_buffer,
block_present);
}
/* Put the 0x80 byte, beginning of padding */
last_padded_block[block_present] = 0x80;
/* Handle possible additional block */
if (block_present > (SM3_BLOCK_SIZE - 1 - sizeof(uint64_t))) {
/* We need an additional block */
PUT_UINT64_BE(8 * ctx->sm3_total, last_padded_block,
(2 * SM3_BLOCK_SIZE) - sizeof(uint64_t));
ret = sm3_process(ctx, last_padded_block); EG(ret, err);
ret = sm3_process(ctx, last_padded_block + SM3_BLOCK_SIZE); EG(ret, err);
} else {
/* We do not need an additional block */
PUT_UINT64_BE(8 * ctx->sm3_total, last_padded_block,
SM3_BLOCK_SIZE - sizeof(uint64_t));
ret = sm3_process(ctx, last_padded_block); EG(ret, err);
}
/* Output the hash result */
PUT_UINT32_BE(ctx->sm3_state[0], output, 0);
PUT_UINT32_BE(ctx->sm3_state[1], output, 4);
PUT_UINT32_BE(ctx->sm3_state[2], output, 8);
PUT_UINT32_BE(ctx->sm3_state[3], output, 12);
PUT_UINT32_BE(ctx->sm3_state[4], output, 16);
PUT_UINT32_BE(ctx->sm3_state[5], output, 20);
PUT_UINT32_BE(ctx->sm3_state[6], output, 24);
PUT_UINT32_BE(ctx->sm3_state[7], output, 28);
/* Tell that we are uninitialized */
ctx->magic = (uint64_t)0;
ret = 0;
err:
return ret;
}
int sm3_scattered(const uint8_t **inputs, const uint32_t *ilens,
uint8_t output[SM3_DIGEST_SIZE])
{
sm3_context ctx;
int pos = 0, ret;
MUST_HAVE((inputs != NULL) && (ilens != NULL) && (output != NULL), ret, err);
ret = sm3_init(&ctx); EG(ret, err);
while (inputs[pos] != NULL) {
ret = sm3_update(&ctx, inputs[pos], ilens[pos]); EG(ret, err);
pos += 1;
}
ret = sm3_final(&ctx, output);
err:
return ret;
}
int sm3(const uint8_t *input, uint32_t ilen, uint8_t output[SM3_DIGEST_SIZE])
{
sm3_context ctx;
int ret;
ret = sm3_init(&ctx); EG(ret, err);
ret = sm3_update(&ctx, input, ilen); EG(ret, err);
ret = sm3_final(&ctx, output);
err:
return ret;
}
#else
/*
* Dummy definition to avoid the empty translation unit ISO C warning
*/
typedef int dummy;
#endif