-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathwc_lms.h
More file actions
506 lines (456 loc) · 17.4 KB
/
wc_lms.h
File metadata and controls
506 lines (456 loc) · 17.4 KB
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
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
/* wc_lms.h
*
* Copyright (C) 2006-2025 wolfSSL Inc.
*
* This file is part of wolfSSL.
*
* wolfSSL is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* wolfSSL is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
*/
/* Implementation based on:
* RFC 8554: Leighton-Micali Hash-Based Signatures
* https://datatracker.ietf.org/doc/html/rfc8554
* Implementation by Sean Parkinson.
*/
/* Possible LMS options:
*
* WOLFSSL_LMS_LARGE_CACHES Default: OFF
* Authentication path caches are large and signing faster.
* WOLFSSL_LMS_ROOT_LEVELS Default: 5 (Large: 7)
* Number of levels of interior nodes from the to to cached.
* Valid value are: 1..height of subtree.
* The bigger the number, the larger the LmsKey but faster signing.
* Only applies when !WOLFSSL_WC_LMS_SMALL.
* WOLFSSL_LMS_CACHE_BITS Default: 5 (Large: 7)
* 2 to the power of the value is the number of leaf nodes to cache.
* Maximum valid value is height of subtree.
* Valid value are: 0..height of subtree.
* The bigger the number, the larger the LmsKey but faster signing.
* Only applies when !WOLFSSL_WC_LMS_SMALL.
*
* Memory/Level | R/C | Approx. Time (% of 5/5)
* (Bytes) | | H=10 | H=15 | H=20
* -------------+--------------+--------+--------
* 2016 | 5/5 | 100.0% | 100.0% | 100.0%
* 3040 | 5/6 | 75.5% | 89.2% |
* 4064 | 6/6 | 75.3% | 78.8% |
* 4576 | 4/7 | 72.4% | 87.6% |
* 6112 | 6/7 | 72.1% | 67.5% |
* 8160 | 7/7 | 72.2% | 56.8% |
* 8416 | 3/8 | 66.4% | 84.9% |
* 12256 | 7/8 | 66.5% | 45.9% |
* 16352 | 8/8 | 66.0% | 35.0% |
* 16416 | 1/9 | 54.1% | 79.5% |
* R = Root levels
* C = Cache bits
* To mimic the dynamic memory usage of XMSS, use 3/3.
*
* WOLFSSL_LMS_NO_SIGN SMOOTHING Default: OFF
* Disable precalculation of next subtree.
* Use less dynamic memory.
* At certain indexes, signing will take a long time compared to the mean.
* When OFF, the private key holds a second copy of caches.
*
* WOLFSSL_LMS_NO_SIG_CACHE Default: OFF
* Signature cache is disabled.
* This will use less dynamic memory and make signing slower when multiple
* levels.
*
* Sig cache holds the C and y hashes for a tree that is not the lowest.
* Sig cache size = (levels - 1) * (1 + p) * 32 bytes
* p is the number of y terms based on Winternitz width.
*
* w | p | l | Bytes
* ---+----+---+------
* 4 | 67 | 2 | 2176
* 4 | 67 | 3 | 4353
* 4 | 67 | 4 | 6528
* 8 | 34 | 2 | 1120
* 8 | 34 | 3 | 2240
* 8 | 34 | 4 | 3360
* w = Winternitz width
* l = #levels
*/
#ifndef WC_LMS_H
#define WC_LMS_H
#include <wolfssl/wolfcrypt/types.h>
#if defined(WOLFSSL_HAVE_LMS) && defined(WOLFSSL_WC_LMS)
#include <wolfssl/wolfcrypt/lms.h>
#include <wolfssl/wolfcrypt/sha256.h>
#ifdef WOLFSSL_LMS_MAX_LEVELS
/* Maximum number of levels of trees supported by implementation. */
#define LMS_MAX_LEVELS WOLFSSL_LMS_MAX_LEVELS
#else
/* Maximum number of levels of trees supported by implementation. */
#define LMS_MAX_LEVELS 4
#endif
#if (LMS_MAX_LEVELS < 1) || (LMS_MAX_LEVELS > 4)
#error "LMS parameters only support heights 1-4."
#endif
/* Smoothing is only used when there are 2 or more levels. */
#if LMS_MAX_LEVELS == 1 && !defined(WOLFSSL_LMS_NO_SIGN_SMOOTHING)
#define WOLFSSL_LMS_NO_SIGN_SMOOTHING
#endif
#ifdef WOLFSSL_LMS_MAX_HEIGHT
/* Maximum height of a tree supported by implementation. */
#define LMS_MAX_HEIGHT WOLFSSL_LMS_MAX_HEIGHT
#else
/* Maximum height of a tree supported by implementation. */
#define LMS_MAX_HEIGHT 20
#endif
#if (LMS_MAX_HEIGHT < 5) || (LMS_MAX_HEIGHT > 20)
#error "LMS parameters only support heights 5-20."
#endif
/* Length of I in bytes. */
#define LMS_I_LEN 16
/* Length of L in bytes. */
#define LMS_L_LEN 4
/* Length of Q for a level. */
#define LMS_Q_LEN 4
/* Length of P in bytes. */
#define LMS_P_LEN 2
/* Length of W in bytes. */
#define LMS_W_LEN 1
/* Length of numeric types when encoding. */
#define LMS_TYPE_LEN 4
/* Size of digest output when truncatint SHA-256 to 192 bits. */
#define WC_SHA256_192_DIGEST_SIZE 24
/* Maximum size of a node hash. */
#define LMS_MAX_NODE_LEN WC_SHA256_DIGEST_SIZE
/* Maximum size of SEED (produced by hash). */
#define LMS_SEED_LEN WC_SHA256_DIGEST_SIZE
/* Maximum number of P, number of n-byte string elements in LM-OTS signature.
* Value of P when N=32 and W=1.
*/
#define LMS_MAX_P 265
#ifndef WOLFSSL_LMS_ROOT_LEVELS
#ifdef WOLFSSL_LMS_LARGE_CACHES
/* Number of root levels of interior nodes to store. */
#define LMS_ROOT_LEVELS 7
#else
/* Number of root levels of interior nodes to store. */
#define LMS_ROOT_LEVELS 5
#endif
#else
#define LMS_ROOT_LEVELS WOLFSSL_LMS_ROOT_LEVELS
#endif
#if LMS_ROOT_LEVELS <= 0
#error "LMS_ROOT_LEVELS must be greater than 0."
#endif
/* Count of root nodes to store per level. */
#define LMS_ROOT_COUNT ((1 << (LMS_ROOT_LEVELS)) - 1)
#ifndef WOLFSSL_LMS_CACHE_BITS
#ifdef WOLFSSL_LMS_LARGE_CACHES
/* 2 to the power of the value is the number of leaf nodes to cache. */
#define LMS_CACHE_BITS 7
#else
/* 2 to the power of the value is the number of leaf nodes to cache. */
#define LMS_CACHE_BITS 5
#endif
#else
#define LMS_CACHE_BITS WOLFSSL_LMS_CACHE_BITS
#endif
#if LMS_CACHE_BITS < 0
#error "LMS_CACHE_BITS must be greater than or equal to 0."
#endif
/* Number of leaf nodes to cache. */
#define LMS_LEAF_CACHE (1 << LMS_CACHE_BITS)
/* Maximum number of levels of trees described in private key. */
#define HSS_MAX_LEVELS 8
/* Length of full Q in bytes. Q from all levels combined. */
#define HSS_Q_LEN 8
/* Compressed parameter set length in bytes. */
#define HSS_COMPRESS_PARAM_SET_LEN 1
/* Total compressed parameter set length for private key in bytes. */
#define HSS_PRIV_KEY_PARAM_SET_LEN \
(HSS_COMPRESS_PARAM_SET_LEN * HSS_MAX_LEVELS)
/* Private key length for one level. */
#define LMS_PRIV_LEN(hLen) \
(LMS_Q_LEN + (hLen) + LMS_I_LEN)
/* Public key length in signature. */
#define LMS_PUBKEY_LEN(hLen) \
(LMS_TYPE_LEN + LMS_TYPE_LEN + LMS_I_LEN + (hLen))
/* LMS signature data length. */
#define LMS_SIG_LEN(h, p, hLen) \
(LMS_Q_LEN + LMS_TYPE_LEN + (hLen) + (p) * (hLen) + LMS_TYPE_LEN + \
(h) * (hLen))
/* Length of public key. */
#define HSS_PUBLIC_KEY_LEN(hLen) (LMS_L_LEN + LMS_PUBKEY_LEN(hLen))
/* Length of private key. */
#define HSS_PRIVATE_KEY_LEN(hLen) \
(HSS_Q_LEN + HSS_PRIV_KEY_PARAM_SET_LEN + (hLen) + LMS_I_LEN)
/* Maximum public key length - length is constant for all parameters. */
#define HSS_MAX_PRIVATE_KEY_LEN HSS_PRIVATE_KEY_LEN(LMS_MAX_NODE_LEN)
/* Maximum private key length - length is constant for all parameters. */
#define HSS_MAX_PUBLIC_KEY_LEN HSS_PUBLIC_KEY_LEN(LMS_MAX_NODE_LEN)
/* Maximum signature length. */
#define HSS_MAX_SIG_LEN \
(LMS_TYPE_LEN + \
LMS_MAX_LEVELS * (LMS_Q_LEN + LMS_TYPE_LEN + LMS_TYPE_LEN + \
LMS_MAX_NODE_LEN * (1 + LMS_MAX_P + LMS_MAX_HEIGHT)) + \
(LMS_MAX_LEVELS - 1) * LMS_PUBKEY_LEN(LMS_MAX_NODE_LEN))
/* Maximum buffer length required for use when hashing. */
#define LMS_MAX_BUFFER_LEN \
(LMS_I_LEN + LMS_Q_LEN + LMS_P_LEN + LMS_W_LEN + 2 * LMS_MAX_NODE_LEN)
/* Private key data length.
*
* HSSPrivKey.priv
*/
#define LMS_PRIV_KEY_LEN(l, hLen) \
((l) * LMS_PRIV_LEN(hLen))
/* Stack of nodes. */
#define LMS_STACK_CACHE_LEN(h, hLen) \
(((h) + 1) * (hLen))
/* Root cache length. */
#define LMS_ROOT_CACHE_LEN(rl, hLen) \
(((1 << (rl)) - 1) * (hLen))
/* Leaf cache length. */
#define LMS_LEAF_CACHE_LEN(cb, hLen) \
((1 << (cb)) * (hLen))
/* Length of LMS private key state.
*
* LmsPrivState
* auth_path +
* root +
* stack.stack + stack.offset +
* cache.leaf + cache.index + cache.offset
*/
#define LMS_PRIV_STATE_LEN(h, rl, cb, hLen) \
(((h) * (hLen)) + \
LMS_STACK_CACHE_LEN(h, hLen) + 4 + \
LMS_ROOT_CACHE_LEN(rl, hLen) + \
LMS_LEAF_CACHE_LEN(cb, hLen) + 4 + 4)
#ifndef WOLFSSL_WC_LMS_SMALL
/* Private key data state for all levels. */
#define LMS_PRIV_STATE_ALL_LEN(l, h, rl, cb, hLen) \
((l) * LMS_PRIV_STATE_LEN(h, rl, cb, hLen))
#else
/* Private key data state for all levels. */
#define LMS_PRIV_STATE_ALL_LEN(l, h, rl, cb, hLen) 0
#endif
#ifndef WOLFSSL_LMS_NO_SIGN_SMOOTHING
/* Extra private key data for smoothing. */
#define LMS_PRIV_SMOOTH_LEN(l, h, rl, cb, hLen) \
(LMS_PRIV_KEY_LEN(l, hLen) + \
((l) - 1) * LMS_PRIV_STATE_LEN(h, rl, cb, hLen))
#else
/* Extra private key data for smoothing. */
#define LMS_PRIV_SMOOTH_LEN(l, h, rl, cb, hLen) 0
#endif
#ifndef WOLFSSL_LMS_NO_SIG_CACHE
#define LMS_PRIV_Y_TREE_LEN(p, hLen) \
((hLen) + (p) * (hLen))
/* Length of the y data cached in private key data. */
#define LMS_PRIV_Y_LEN(l, p, hLen) \
(((l) - 1) * ((hLen) + (p) * (hLen)))
#else
/* Length of the y data cached in private key data. */
#define LMS_PRIV_Y_LEN(l, p, hLen) 0
#endif
#ifndef WOLFSSL_WC_LMS_SMALL
/* Length of private key data. */
#define LMS_PRIV_DATA_LEN(l, h, p, rl, cb, hLen) \
(LMS_PRIV_KEY_LEN(l, hLen) + \
LMS_PRIV_STATE_ALL_LEN(l, h, rl, cb, hLen) + \
LMS_PRIV_SMOOTH_LEN(l, h, rl, cb, hLen) + \
LMS_PRIV_Y_LEN(l, p, hLen))
#else
#define LMS_PRIV_DATA_LEN(l, h, p, rl, cb, hLen) \
LMS_PRIV_KEY_LEN(l, hLen)
#endif
/* Indicates using SHA-256 for hashing. */
#define LMS_SHA256 0x0000
/* Indicates using SHA-256/192 for hashing. */
#define LMS_SHA256_192 0x1000
/* Mask to get hashing algorithm from type. */
#define LMS_HASH_MASK 0xf000
/* Mask to get height or Winternitz width from type. */
#define LMS_H_W_MASK 0x0fff
/* LMS Parameters. */
/* SHA-256 hash, 32-bytes of hash used, tree height of 5. */
#define LMS_SHA256_M32_H5 0x05
/* SHA-256 hash, 32-bytes of hash used, tree height of 10. */
#define LMS_SHA256_M32_H10 0x06
/* SHA-256 hash, 32-bytes of hash used, tree height of 15. */
#define LMS_SHA256_M32_H15 0x07
/* SHA-256 hash, 32-bytes of hash used, tree height of 20. */
#define LMS_SHA256_M32_H20 0x08
/* SHA-256 hash, 32-bytes of hash used, tree height of 25. */
#define LMS_SHA256_M32_H25 0x09
/* SHA-256 hash, 32-bytes of hash used, Winternitz width of 1 bit. */
#define LMOTS_SHA256_N32_W1 0x01
/* SHA-256 hash, 32-bytes of hash used, Winternitz width of 2 bits. */
#define LMOTS_SHA256_N32_W2 0x02
/* SHA-256 hash, 32-bytes of hash used, Winternitz width of 4 bits. */
#define LMOTS_SHA256_N32_W4 0x03
/* SHA-256 hash, 32-bytes of hash used, Winternitz width of 8 bits. */
#define LMOTS_SHA256_N32_W8 0x04
/* SHA-256 hash, 32-bytes of hash used, tree height of 5. */
#define LMS_SHA256_M24_H5 (0x0a | LMS_SHA256_192)
/* SHA-256 hash, 32-bytes of hash used, tree height of 10. */
#define LMS_SHA256_M24_H10 (0x0b | LMS_SHA256_192)
/* SHA-256 hash, 32-bytes of hash used, tree height of 15. */
#define LMS_SHA256_M24_H15 (0x0c | LMS_SHA256_192)
/* SHA-256 hash, 32-bytes of hash used, tree height of 20. */
#define LMS_SHA256_M24_H20 (0x0d | LMS_SHA256_192)
/* SHA-256 hash, 32-bytes of hash used, tree height of 25. */
#define LMS_SHA256_M24_H25 (0x0e | LMS_SHA256_192)
/* SHA-256 hash, 32-bytes of hash used, Winternitz width of 1 bit. */
#define LMOTS_SHA256_N24_W1 (0x05 | LMS_SHA256_192)
/* SHA-256 hash, 32-bytes of hash used, Winternitz width of 2 bits. */
#define LMOTS_SHA256_N24_W2 (0x06 | LMS_SHA256_192)
/* SHA-256 hash, 32-bytes of hash used, Winternitz width of 4 bits. */
#define LMOTS_SHA256_N24_W4 (0x07 | LMS_SHA256_192)
/* SHA-256 hash, 32-bytes of hash used, Winternitz width of 8 bits. */
#define LMOTS_SHA256_N24_W8 (0x08 | LMS_SHA256_192)
typedef struct LmsParams {
/* Number of tree levels. */
word8 levels;
/* Height of each tree. */
word8 height;
/* Width or Winternitz coefficient. */
word8 width;
/* Number of left-shift bits used in checksum calculation. */
word8 ls;
/* Number of n-byte string elements in LM-OTS signature. */
word16 p;
/* LMS type. */
word16 lmsType;
/* LMOTS type. */
word16 lmOtsType;
/* Length of LM-OTS signature. */
word16 sig_len;
/* Length of seed. */
word16 hash_len;
#ifndef WOLFSSL_WC_LMS_SMALL
/* Number of root levels of interior nodes to store. */
word8 rootLevels;
/* 2 to the power of the value is the number of leaf nodes to cache. */
word8 cacheBits;
#endif
} LmsParams;
/* Mapping of id and string to parameters. */
typedef struct wc_LmsParamsMap {
/* Identifier of parameters. */
enum wc_LmsParm id;
/* String representation of identifier of parameters. */
#ifdef WOLFSSL_NAMES_STATIC
const char str[32]; /* large enough for largest string in wc_lms_map[] */
#else
const char* str;
#endif
/* LMS parameter set. */
LmsParams params;
} wc_LmsParamsMap;
typedef struct LmsState {
/* Buffer to hold data to hash. */
ALIGN16 byte buffer[LMS_MAX_BUFFER_LEN];
#ifdef WOLFSSL_SMALL_STACK
/* Buffer to hold expanded Q coefficients. */
ALIGN16 byte a[LMS_MAX_P];
#endif
/* LMS parameters. */
const LmsParams* params;
/* Hash algorithm. */
wc_Sha256 hash;
/* Hash algorithm for calculating K. */
wc_Sha256 hash_k;
} LmsState;
#ifndef WOLFSSL_WC_LMS_SMALL
/* Stack of interior node hashes. */
typedef struct LmsStack {
/* Stack nodes. */
byte* stack;
/* Top of stack offset. */
word32 offset;
} LmsStack;
/* Cache of leaf hashes. */
typedef struct HssLeafCache {
/* Cache of leaf nodes. Circular queue. */
byte* cache;
/* Start index of cached leaf nodes. */
word32 idx;
/* Index into cache of first leaf node. */
word32 offset;
} HssLeafCache;
typedef struct LmsPrivState {
/* Authentication path for current index. */
byte* auth_path;
/* Stack nodes. */
LmsStack stack;
/* Root nodes. */
byte* root;
/* Cache of leaf nodes. */
HssLeafCache leaf;
} LmsPrivState;
#endif /* WOLFSSL_WC_LMS_SMALL */
typedef struct HssPrivKey {
/* Private key. */
byte* priv;
#ifndef WOLFSSL_WC_LMS_SMALL
/* Per level state of the private key. */
LmsPrivState state[LMS_MAX_LEVELS];
#ifndef WOLFSSL_LMS_NO_SIGN_SMOOTHING
/* Next private key. */
byte* next_priv;
/* Next private state. */
LmsPrivState next_state[LMS_MAX_LEVELS - 1];
#endif
#ifndef WOLFSSL_LMS_NO_SIG_CACHE
/* Per level state of the private key. */
byte* y;
#endif
/* Indicates the key has all levels initialized. */
word8 inited:1;
#endif
} HssPrivKey;
struct LmsKey {
/* Public key. */
ALIGN16 byte pub[HSS_PUBLIC_KEY_LEN(LMS_MAX_NODE_LEN)];
#ifndef WOLFSSL_LMS_VERIFY_ONLY
/* Encoded private key. */
ALIGN16 byte priv_raw[HSS_MAX_PRIVATE_KEY_LEN];
/* Packed private key data. */
byte* priv_data;
/* HSS Private key. */
HssPrivKey priv;
/* Callback to write/update key. */
wc_lms_write_private_key_cb write_private_key;
/* Callback to read key. */
wc_lms_read_private_key_cb read_private_key;
/* Context arg passed to callbacks. */
void* context;
/* Dynamic memory hint. */
void* heap;
#endif /* !WOLFSSL_LMS_VERIFY_ONLY */
/* Parameters of key. */
const LmsParams* params;
/* Current state of key. */
enum wc_LmsState state;
#ifdef WOLF_CRYPTO_CB
/* Device Identifier. */
int devId;
#endif
};
int wc_hss_make_key(LmsState* state, WC_RNG* rng, byte* priv_raw,
HssPrivKey* priv_key, byte* priv_data, byte* pub);
int wc_hss_reload_key(LmsState* state, const byte* priv_raw,
HssPrivKey* priv_key, byte* priv_data, byte* pub_root);
int wc_hss_sign(LmsState* state, byte* priv_raw, HssPrivKey* priv_key,
byte* priv_data, const byte* msg, word32 msgSz, byte* sig);
int wc_hss_sigsleft(const LmsParams* params, const byte* priv_raw);
int wc_hss_verify(LmsState* state, const byte* pub, const byte* msg,
word32 msgSz, const byte* sig);
#endif /* WOLFSSL_HAVE_LMS && WOLFSSL_WC_LMS */
#endif /* WC_LMS_H */