forked from ANSSI-FR/libecc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ecsdsa_common.c
655 lines (578 loc) · 18 KB
/
ecsdsa_common.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
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
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
/*
* Copyright (C) 2017 - This file is part of libecc project
*
* Authors:
* Ryad BENADJILA <[email protected]>
* Arnaud EBALARD <[email protected]>
* Jean-Pierre FLORI <[email protected]>
*
* Contributors:
* Nicolas VIVET <[email protected]>
* Karim KHALFALLAH <[email protected]>
*
* This software is licensed under a dual BSD and GPL v2 license.
* See LICENSE file at the root folder of the project.
*/
#include "../lib_ecc_config.h"
#if (defined(WITH_SIG_ECSDSA) || defined(WITH_SIG_ECOSDSA))
#include "../nn/nn_rand.h"
#include "../nn/nn_mul.h"
#include "../nn/nn_logical.h"
#include "ecsdsa_common.h"
#include "sig_algs_internal.h"
#include "ec_key.h"
#ifdef VERBOSE_INNER_VALUES
#define EC_SIG_ALG "EC[O]SDSA"
#endif
#include "../utils/dbg_sig.h"
void __ecsdsa_init_pub_key(ec_pub_key *out_pub, ec_priv_key *in_priv,
ec_sig_alg_type key_type)
{
prj_pt_src_t G;
/* Blinding mask for scalar multiplication */
nn scalar_b;
int ret;
MUST_HAVE(out_pub != NULL);
priv_key_check_initialized_and_type(in_priv, key_type);
/* Zero init public key to be generated */
local_memset(out_pub, 0, sizeof(ec_pub_key));
/* We use blinding for the scalar multiplication */
ret = nn_get_random_mod(&scalar_b, &(in_priv->params->ec_gen_order));
if (ret) {
goto err;
}
/* Y = xG */
G = &(in_priv->params->ec_gen);
/* Use blinding with scalar_b when computing point scalar multiplication */
if(prj_pt_mul_monty_blind(&(out_pub->y), &(in_priv->x), G, &scalar_b, &(in_priv->params->ec_gen_order))){
goto err;
}
nn_uninit(&scalar_b);
out_pub->key_type = key_type;
out_pub->params = in_priv->params;
out_pub->magic = PUB_KEY_MAGIC;
err:
return;
}
u8 __ecsdsa_siglen(u16 p_bit_len, u16 q_bit_len, u8 hsize, u8 blocksize)
{
MUST_HAVE((p_bit_len <= CURVES_MAX_P_BIT_LEN) &&
(q_bit_len <= CURVES_MAX_Q_BIT_LEN) &&
(hsize <= MAX_DIGEST_SIZE) && (blocksize <= MAX_BLOCK_SIZE));
return (u8)ECSDSA_SIGLEN(hsize, q_bit_len);
}
/*
* Generic *internal* EC-SDSA signature functions. There purpose is to
* allow passing specific hash functions and the random ephemeral
* key k, so that compliance tests against test vector be made
* without ugly hack in the code itself.
*
* The 'optimized' parameter tells the function if the r value of
* the signature is computed using only the x ccordinate of the
* the user's public key (normal version uses both coordinates).
*
* Normal: r = h(Wx || Wy || m)
* Optimized : r = h(Wx || m)
*
*| IUF - ECSDSA/ECOSDSA signature
*|
*| I 1. Get a random value k in ]0, q[
*| I 2. Compute W = kG = (Wx, Wy)
*| IUF 3. Compute r = H(Wx [|| Wy] || m)
*| - In the normal version (ECSDSA), r = H(Wx || Wy || m).
*| - In the optimized version (ECOSDSA), r = H(Wx || m).
*| F 4. Compute e = OS2I(r) mod q
*| F 5. if e == 0, restart at step 1.
*| F 6. Compute s = (k + ex) mod q.
*| F 7. if s == 0, restart at step 1.
*| F 8. Return (r, s)
*
* In the project, the normal mode is named ECSDSA, the optimized
* one is ECOSDSA.
*
* Implementation note:
*
* In ISO-14888-3, the option is provided to the developer to check
* whether r = 0 and restart the process in that case. Even if
* unlikely to trigger, that check makes a lot of sense because the
* verifier expects a non-zero value for r. In the specification, r
* is a string (r = H(Wx [|| Wy] || m)). But r is used in practice
* - both on the signer and the verifier - after conversion to an
* integer and reduction mod q. The value resulting from that step
* is named e (e = OS2I(r) mod q). The check for the case when r = 0
* should be replaced by a check for e = 0. This is more conservative
* and what is described above and done below in the implementation.
*/
#define ECSDSA_SIGN_MAGIC ((word_t)(0x743c03ae409d15c4ULL))
#define ECSDSA_SIGN_CHECK_INITIALIZED(A) \
MUST_HAVE((((const void *)(A)) != NULL) && \
((A)->magic == ECSDSA_SIGN_MAGIC))
int __ecsdsa_sign_init(struct ec_sign_context *ctx,
ec_sig_alg_type key_type, int optimized)
{
u8 Wx[BYTECEIL(CURVES_MAX_P_BIT_LEN)];
u8 Wy[BYTECEIL(CURVES_MAX_P_BIT_LEN)];
const ec_priv_key *priv_key;
prj_pt_src_t G;
bitcnt_t p_bit_len;
u8 p_len;
prj_pt kG;
aff_pt W_aff;
nn_src_t q;
#ifdef USE_SIG_BLINDING
/* scalar_b is the scalar multiplication blinder */
nn scalar_b;
#endif
int ret;
nn k;
/* First, verify context has been initialized */
SIG_SIGN_CHECK_INITIALIZED(ctx);
/* Zero init points */
local_memset(&kG, 0, sizeof(prj_pt));
/* Additional sanity checks on input params from context */
key_pair_check_initialized_and_type(ctx->key_pair, key_type);
if ((!(ctx->h)) || (ctx->h->digest_size > MAX_DIGEST_SIZE) ||
(ctx->h->block_size > MAX_BLOCK_SIZE)) {
ret = -1;
goto err;
}
/* Make things more readable */
priv_key = &(ctx->key_pair->priv_key);
G = &(priv_key->params->ec_gen);
q = &(priv_key->params->ec_gen_order);
p_bit_len = priv_key->params->ec_fp.p_bitlen;
p_len = (u8)BYTECEIL(p_bit_len);
dbg_nn_print("p", &(priv_key->params->ec_fp.p));
dbg_nn_print("q", q);
dbg_priv_key_print("x", priv_key);
dbg_ec_point_print("G", G);
dbg_pub_key_print("Y", &(ctx->key_pair->pub_key));
/* 1. Get a random value k in ]0, q[ */
#ifdef NO_KNOWN_VECTORS
/* NOTE: when we do not need self tests for known vectors,
* we can be strict about random function handler!
* This allows us to avoid the corruption of such a pointer.
*/
/* Sanity check on the handler before calling it */
if(ctx->rand != nn_get_random_mod){
ret = -1;
goto err;
}
#endif
ret = ctx->rand(&k, q);
if (ret) {
ret = -1;
goto err;
}
dbg_nn_print("k", &k);
/* 2. Compute W = kG = (Wx, Wy). */
#ifdef USE_SIG_BLINDING
/* We use blinding for the scalar multiplication */
ret = nn_get_random_mod(&scalar_b, q);
if (ret) {
ret = -1;
goto err;
}
if(prj_pt_mul_monty_blind(&kG, &k, G, &scalar_b, q)){
ret = -1;
goto err;
}
nn_uninit(&scalar_b);
#else
prj_pt_mul_monty(&kG, &k, G);
#endif
prj_pt_to_aff(&W_aff, &kG);
prj_pt_uninit(&kG);
dbg_nn_print("W_x", &(W_aff.x.fp_val));
dbg_nn_print("W_y", &(W_aff.y.fp_val));
/*
* 3. Compute r = H(Wx [|| Wy] || m)
*
* - In the normal version (ECSDSA), r = h(Wx || Wy || m).
* - In the optimized version (ECOSDSA), r = h(Wx || m).
*/
/* Since we call a callback, sanity check our mapping */
if(hash_mapping_callbacks_sanity_check(ctx->h)){
ret = -1;
goto err;
}
ctx->h->hfunc_init(&(ctx->sign_data.ecsdsa.h_ctx));
fp_export_to_buf(Wx, p_len, &(W_aff.x));
/* Since we call a callback, sanity check our mapping */
if(hash_mapping_callbacks_sanity_check(ctx->h)){
ret = -1;
goto err;
}
ctx->h->hfunc_update(&(ctx->sign_data.ecsdsa.h_ctx), Wx, p_len);
if (!optimized) {
fp_export_to_buf(Wy, p_len, &(W_aff.y));
/* Since we call a callback, sanity check our mapping */
if(hash_mapping_callbacks_sanity_check(ctx->h)){
ret = -1;
goto err;
}
ctx->h->hfunc_update(&(ctx->sign_data.ecsdsa.h_ctx), Wy,
p_len);
}
aff_pt_uninit(&W_aff);
local_memset(Wx, 0, p_len);
local_memset(Wy, 0, p_len);
/* Initialize the remaining of sign context. */
nn_copy(&(ctx->sign_data.ecsdsa.k), &k);
nn_zero(&k);
ctx->sign_data.ecsdsa.magic = ECSDSA_SIGN_MAGIC;
ret = 0;
err:
PTR_NULLIFY(priv_key);
PTR_NULLIFY(G);
PTR_NULLIFY(q);
VAR_ZEROIFY(p_len);
VAR_ZEROIFY(p_bit_len);
return ret;
}
int __ecsdsa_sign_update(struct ec_sign_context *ctx,
const u8 *chunk, u32 chunklen)
{
/*
* First, verify context has been initialized and private
* part too. This guarantees the context is an ECSDSA
* signature one and we do not update() or finalize()
* before init().
*/
SIG_SIGN_CHECK_INITIALIZED(ctx);
ECSDSA_SIGN_CHECK_INITIALIZED(&(ctx->sign_data.ecsdsa));
/* 3. Compute r = H(Wx [|| Wy] || m) */
/* Since we call a callback, sanity check our mapping */
if(hash_mapping_callbacks_sanity_check(ctx->h)){
return -1;
}
ctx->h->hfunc_update(&(ctx->sign_data.ecsdsa.h_ctx), chunk, chunklen);
return 0;
}
int __ecsdsa_sign_finalize(struct ec_sign_context *ctx, u8 *sig, u8 siglen)
{
nn_src_t q, x;
nn tmp, s, e, ex;
u8 r[MAX_DIGEST_SIZE];
const ec_priv_key *priv_key;
bitcnt_t q_bit_len;
u8 r_len, s_len;
u8 hsize;
int ret;
#ifdef USE_SIG_BLINDING
/* b is the blinding mask */
nn b, binv;
#endif /* USE_SIG_BLINDING */
/*
* First, verify context has been initialized and private
* part too. This guarantees the context is an ECSDSA
* signature one and we do not finalize() before init().
*/
SIG_SIGN_CHECK_INITIALIZED(ctx);
ECSDSA_SIGN_CHECK_INITIALIZED(&(ctx->sign_data.ecsdsa));
/* Make things more readable */
priv_key = &(ctx->key_pair->priv_key);
q = &(priv_key->params->ec_gen_order);
x = &(priv_key->x);
q_bit_len = priv_key->params->ec_gen_order_bitlen;
hsize = ctx->h->digest_size;
r_len = (u8)ECSDSA_R_LEN(hsize);
s_len = (u8)ECSDSA_S_LEN(q_bit_len);
if (siglen != ECSDSA_SIGLEN(hsize, q_bit_len)) {
ret = -1;
goto err;
}
#ifdef USE_SIG_BLINDING
ret = nn_get_random_mod(&b, q);
if (ret) {
ret = -1;
goto err;
}
dbg_nn_print("b", &b);
#endif /* USE_SIG_BLINDING */
/* 3. Compute r = H(Wx [|| Wy] || m) */
local_memset(r, 0, hsize);
/* Since we call a callback, sanity check our mapping */
if(hash_mapping_callbacks_sanity_check(ctx->h)){
ret = -1;
goto err;
}
ctx->h->hfunc_finalize(&(ctx->sign_data.ecsdsa.h_ctx), r);
dbg_buf_print("r", r, r_len);
/* 4. Compute e = OS2I(r) mod q */
nn_init_from_buf(&tmp, r, r_len);
nn_mod(&e, &tmp, q);
dbg_nn_print("e", &e);
/*
* 5. if e == 0, restart at step 1.
*
* As we cannot restart at that point (step 1. is in init()),
* we just stop and return an error.
*/
if (nn_iszero(&e)) {
ret = -1;
goto err;
}
#ifdef USE_SIG_BLINDING
/* Blind e with b */
nn_mul_mod(&e, &e, &b, q);
#endif /* USE_SIG_BLINDING */
/* 6. Compute s = (k + ex) mod q. */
nn_mul_mod(&ex, x, &e, q);
nn_zero(&e);
#ifdef USE_SIG_BLINDING
/* Blind k with b */
nn_mul_mod(&s, &(ctx->sign_data.ecsdsa.k), &b, q);
nn_mod_add(&s, &s, &ex, q);
#else
nn_mod_add(&s, &(ctx->sign_data.ecsdsa.k), &ex, q);
#endif /* USE_SIG_BLINDING */
nn_zero(&ex);
nn_zero(&tmp);
#ifdef USE_SIG_BLINDING
/* Unblind s */
nn_modinv(&binv, &b, q);
nn_mul_mod(&s, &s, &binv, q);
#endif /* USE_SIG_BLINDING */
dbg_nn_print("s", &s);
/*
* 7. if s == 0, restart at step 1.
*
* As we cannot restart at that point (step 1. is in init()),
* we just stop and return an error.
*/
if (nn_iszero(&s)) {
ret = -1;
goto err;
}
/* 8. Return (r, s) */
local_memcpy(sig, r, r_len);
local_memset(r, 0, r_len);
nn_export_to_buf(sig + r_len, s_len, &s);
nn_zero(&s);
ret = 0;
err:
/*
* We can now clear data part of the context. This will clear
* magic and avoid further reuse of the whole context.
*/
local_memset(&(ctx->sign_data.ecsdsa), 0, sizeof(ecsdsa_sign_data));
/* Clean what remains on the stack */
PTR_NULLIFY(q);
PTR_NULLIFY(x);
PTR_NULLIFY(priv_key);
VAR_ZEROIFY(q_bit_len);
VAR_ZEROIFY(r_len);
VAR_ZEROIFY(s_len);
VAR_ZEROIFY(hsize);
#ifdef USE_SIG_BLINDING
nn_zero(&b);
nn_zero(&binv);
#endif /* USE_SIG_BLINDING */
return ret;
}
#define ECSDSA_VERIFY_MAGIC ((word_t)(0x8eac1ff89995bb0aULL))
#define ECSDSA_VERIFY_CHECK_INITIALIZED(A) \
MUST_HAVE((((const void *)(A)) != NULL) && \
((A)->magic == ECSDSA_VERIFY_MAGIC))
/*
*| IUF - ECSDSA/ECOSDSA verification
*|
*| I 1. if s is not in ]0,q[, reject the signature.
*| I 2. Compute e = -r mod q
*| I 3. If e == 0, reject the signature.
*| I 4. Compute W' = sG + eY
*| IUF 5. Compute r' = H(W'x [|| W'y] || m)
*| - In the normal version (ECSDSA), r' = H(W'x || W'y || m).
*| - In the optimized version (ECOSDSA), r' = H(W'x || m).
*| F 6. Accept the signature if and only if r and r' are the same
*
*/
int __ecsdsa_verify_init(struct ec_verify_context *ctx,
const u8 *sig, u8 siglen,
ec_sig_alg_type key_type, int optimized)
{
prj_pt_src_t G, Y;
const ec_pub_key *pub_key;
nn_src_t q;
nn rmodq, e, r, s;
prj_pt sG, eY, Wprime;
u8 Wprimex[BYTECEIL(CURVES_MAX_P_BIT_LEN)];
u8 Wprimey[BYTECEIL(CURVES_MAX_P_BIT_LEN)];
u8 p_len, r_len, s_len;
bitcnt_t q_bit_len;
aff_pt Wprime_aff;
u8 hsize;
int ret;
/* First, verify context has been initialized */
SIG_VERIFY_CHECK_INITIALIZED(ctx);
/* Zero init points */
local_memset(&sG, 0, sizeof(prj_pt));
local_memset(&eY, 0, sizeof(prj_pt));
/* Do some sanity checks on input params */
pub_key_check_initialized_and_type(ctx->pub_key, key_type);
if ((!(ctx->h)) || (ctx->h->digest_size > MAX_DIGEST_SIZE) ||
(ctx->h->block_size > MAX_BLOCK_SIZE)) {
ret = -1;
goto err;
}
/* Make things more readable */
pub_key = ctx->pub_key;
G = &(pub_key->params->ec_gen);
Y = &(pub_key->y);
q = &(pub_key->params->ec_gen_order);
p_len = (u8)BYTECEIL(pub_key->params->ec_fp.p_bitlen);
q_bit_len = pub_key->params->ec_gen_order_bitlen;
hsize = ctx->h->digest_size;
r_len = (u8)ECSDSA_R_LEN(hsize);
s_len = (u8)ECSDSA_S_LEN(q_bit_len);
if (siglen != ECSDSA_SIGLEN(hsize, q_bit_len)) {
ret = -1;
goto err;
}
/* 1. if s is not in ]0,q[, reject the signature. */
nn_init_from_buf(&s, sig + r_len, s_len);
if (nn_iszero(&s) || (nn_cmp(&s, q) >= 0)) {
ret = -1;
goto err;
}
/*
* 2. Compute e = -r mod q
*
* To avoid dealing w/ negative numbers, we simply compute
* e = -r mod q = q - (r mod q) (except when r is 0).
*/
nn_init_from_buf(&r, sig, r_len);
nn_mod(&rmodq, &r, q);
nn_zero(&r);
if (nn_iszero(&rmodq)) {
nn_zero(&e);
} else {
nn_sub(&e, q, &rmodq);
}
nn_zero(&rmodq);
/* 3. If e == 0, reject the signature. */
if (nn_iszero(&e)) {
ret = -1;
goto err;
}
/* 4. Compute W' = sG + eY */
prj_pt_mul_monty(&sG, &s, G);
prj_pt_mul_monty(&eY, &e, Y);
nn_zero(&e);
prj_pt_add_monty(&Wprime, &sG, &eY);
prj_pt_to_aff(&Wprime_aff, &Wprime);
prj_pt_uninit(&sG);
prj_pt_uninit(&eY);
prj_pt_uninit(&Wprime);
/*
* 5. Compute r' = H(W'x [|| W'y] || m)
*
* - In the normal version (ECSDSA), r = h(W'x || W'y || m).
* - In the optimized version (ECOSDSA), r = h(W'x || m).
*/
/* Since we call a callback, sanity check our mapping */
if(hash_mapping_callbacks_sanity_check(ctx->h)){
ret = -1;
goto err;
}
ctx->h->hfunc_init(&(ctx->verify_data.ecsdsa.h_ctx));
fp_export_to_buf(Wprimex, p_len, &(Wprime_aff.x));
/* Since we call a callback, sanity check our mapping */
if(hash_mapping_callbacks_sanity_check(ctx->h)){
ret = -1;
goto err;
}
ctx->h->hfunc_update(&(ctx->verify_data.ecsdsa.h_ctx), Wprimex, p_len);
if (!optimized) {
fp_export_to_buf(Wprimey, p_len, &(Wprime_aff.y));
/* Since we call a callback, sanity check our mapping */
if(hash_mapping_callbacks_sanity_check(ctx->h)){
ret = -1;
goto err;
}
ctx->h->hfunc_update(&(ctx->verify_data.ecsdsa.h_ctx),
Wprimey, p_len);
}
local_memset(Wprimex, 0, p_len);
local_memset(Wprimey, 0, p_len);
aff_pt_uninit(&Wprime_aff);
/* Initialize the remaining of verify context. */
local_memcpy(ctx->verify_data.ecsdsa.r, sig, r_len);
nn_copy(&(ctx->verify_data.ecsdsa.s), &s);
nn_zero(&s);
ctx->verify_data.ecsdsa.magic = ECSDSA_VERIFY_MAGIC;
ret = 0;
err:
/* Clean what remains on the stack */
PTR_NULLIFY(G);
PTR_NULLIFY(Y);
PTR_NULLIFY(pub_key);
PTR_NULLIFY(q);
VAR_ZEROIFY(p_len);
VAR_ZEROIFY(r_len);
VAR_ZEROIFY(s_len);
VAR_ZEROIFY(q_bit_len);
VAR_ZEROIFY(hsize);
return ret;
}
int __ecsdsa_verify_update(struct ec_verify_context *ctx,
const u8 *chunk, u32 chunklen)
{
/*
* First, verify context has been initialized and public
* part too. This guarantees the context is an ECSDSA
* verification one and we do not update() or finalize()
* before init().
*/
SIG_VERIFY_CHECK_INITIALIZED(ctx);
ECSDSA_VERIFY_CHECK_INITIALIZED(&(ctx->verify_data.ecsdsa));
/* 5. Compute r' = H(W'x [|| W'y] || m) */
/* Since we call a callback, sanity check our mapping */
if(hash_mapping_callbacks_sanity_check(ctx->h)){
return -1;
}
ctx->h->hfunc_update(&(ctx->verify_data.ecsdsa.h_ctx), chunk,
chunklen);
return 0;
}
int __ecsdsa_verify_finalize(struct ec_verify_context *ctx)
{
u8 r_prime[MAX_DIGEST_SIZE];
u32 r_len;
int ret;
/*
* First, verify context has been initialized and public
* part too. This guarantees the context is an ECSDSA
* verification one and we do not finalize() before init().
*/
SIG_VERIFY_CHECK_INITIALIZED(ctx);
ECSDSA_VERIFY_CHECK_INITIALIZED(&(ctx->verify_data.ecsdsa));
r_len = ECSDSA_R_LEN(ctx->h->digest_size);
/* 5. Compute r' = H(W'x [|| W'y] || m) */
/* Since we call a callback, sanity check our mapping */
if(hash_mapping_callbacks_sanity_check(ctx->h)){
ret = -1;
goto err;
}
ctx->h->hfunc_finalize(&(ctx->verify_data.ecsdsa.h_ctx), r_prime);
/* 6. Accept the signature if and only if r and r' are the same */
ret = are_equal(ctx->verify_data.ecsdsa.r, r_prime, r_len) ? 0 : -1;
local_memset(r_prime, 0, r_len);
/*
* We can now clear data part of the context. This will clear
* magic and avoid further reuse of the whole context.
*/
local_memset(&(ctx->verify_data.ecsdsa), 0,
sizeof(ecsdsa_verify_data));
/* Clean what remains on the stack */
VAR_ZEROIFY(r_len);
err:
return ret;
}
#else /* (defined(WITH_SIG_ECSDSA) || defined(WITH_SIG_ECOSDSA)) */
/*
* Dummy definition to avoid the empty translation unit ISO C warning
*/
typedef int dummy;
#endif /* (defined(WITH_SIG_ECSDSA) || defined(WITH_SIG_ECOSDSA)) */