359e034ed9f5719cf9951b183c89dec7f6e3f377
[openssl.git] / crypto / ec / ec_key.c
1 /*
2  * Copyright 2002-2020 The OpenSSL Project Authors. All Rights Reserved.
3  * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved
4  *
5  * Licensed under the Apache License 2.0 (the "License").  You may not use
6  * this file except in compliance with the License.  You can obtain a copy
7  * in the file LICENSE in the source distribution or at
8  * https://www.openssl.org/source/license.html
9  */
10
11 /*
12  * ECDSA low level APIs are deprecated for public use, but still ok for
13  * internal use.
14  */
15 #include "internal/deprecated.h"
16
17 #include "internal/cryptlib.h"
18 #include <string.h>
19 #include "ec_local.h"
20 #include "internal/refcount.h"
21 #include <openssl/err.h>
22 #include <openssl/engine.h>
23 #include <openssl/self_test.h>
24 #include "crypto/bn.h"
25
26 static int ecdsa_keygen_pairwise_test(EC_KEY *eckey, OSSL_CALLBACK *cb,
27                                       void *cbarg);
28
29 #ifndef FIPS_MODULE
30 EC_KEY *EC_KEY_new(void)
31 {
32     return ec_key_new_method_int(NULL, NULL, NULL);
33 }
34 #endif
35
36 EC_KEY *EC_KEY_new_with_libctx(OPENSSL_CTX *ctx, const char *propq)
37 {
38     return ec_key_new_method_int(ctx, propq, NULL);
39 }
40
41 EC_KEY *EC_KEY_new_by_curve_name_with_libctx(OPENSSL_CTX *ctx,
42                                              const char *propq, int nid)
43 {
44     EC_KEY *ret = EC_KEY_new_with_libctx(ctx, propq);
45     if (ret == NULL)
46         return NULL;
47     ret->group = EC_GROUP_new_by_curve_name_with_libctx(ctx, propq, nid);
48     if (ret->group == NULL) {
49         EC_KEY_free(ret);
50         return NULL;
51     }
52     if (ret->meth->set_group != NULL
53         && ret->meth->set_group(ret, ret->group) == 0) {
54         EC_KEY_free(ret);
55         return NULL;
56     }
57     return ret;
58 }
59
60 #ifndef FIPS_MODULE
61 EC_KEY *EC_KEY_new_by_curve_name(int nid)
62 {
63     return EC_KEY_new_by_curve_name_with_libctx(NULL, NULL, nid);
64 }
65 #endif
66
67 void EC_KEY_free(EC_KEY *r)
68 {
69     int i;
70
71     if (r == NULL)
72         return;
73
74     CRYPTO_DOWN_REF(&r->references, &i, r->lock);
75     REF_PRINT_COUNT("EC_KEY", r);
76     if (i > 0)
77         return;
78     REF_ASSERT_ISNT(i < 0);
79
80     if (r->meth != NULL && r->meth->finish != NULL)
81         r->meth->finish(r);
82
83 #if !defined(OPENSSL_NO_ENGINE) && !defined(FIPS_MODULE)
84     ENGINE_finish(r->engine);
85 #endif
86
87     if (r->group && r->group->meth->keyfinish)
88         r->group->meth->keyfinish(r);
89
90 #ifndef FIPS_MODULE
91     CRYPTO_free_ex_data(CRYPTO_EX_INDEX_EC_KEY, r, &r->ex_data);
92 #endif
93     CRYPTO_THREAD_lock_free(r->lock);
94     EC_GROUP_free(r->group);
95     EC_POINT_free(r->pub_key);
96     BN_clear_free(r->priv_key);
97     OPENSSL_free(r->propq);
98
99     OPENSSL_clear_free((void *)r, sizeof(EC_KEY));
100 }
101
102 EC_KEY *EC_KEY_copy(EC_KEY *dest, const EC_KEY *src)
103 {
104     if (dest == NULL || src == NULL) {
105         ECerr(EC_F_EC_KEY_COPY, ERR_R_PASSED_NULL_PARAMETER);
106         return NULL;
107     }
108     if (src->meth != dest->meth) {
109         if (dest->meth->finish != NULL)
110             dest->meth->finish(dest);
111         if (dest->group && dest->group->meth->keyfinish)
112             dest->group->meth->keyfinish(dest);
113 #if !defined(OPENSSL_NO_ENGINE) && !defined(FIPS_MODULE)
114         if (ENGINE_finish(dest->engine) == 0)
115             return 0;
116         dest->engine = NULL;
117 #endif
118     }
119     dest->libctx = src->libctx;
120     /* copy the parameters */
121     if (src->group != NULL) {
122         /* clear the old group */
123         EC_GROUP_free(dest->group);
124         dest->group = ec_group_new_with_libctx(src->libctx, src->propq,
125                                                src->group->meth);
126         if (dest->group == NULL)
127             return NULL;
128         if (!EC_GROUP_copy(dest->group, src->group))
129             return NULL;
130
131         /*  copy the public key */
132         if (src->pub_key != NULL) {
133             EC_POINT_free(dest->pub_key);
134             dest->pub_key = EC_POINT_new(src->group);
135             if (dest->pub_key == NULL)
136                 return NULL;
137             if (!EC_POINT_copy(dest->pub_key, src->pub_key))
138                 return NULL;
139         }
140         /* copy the private key */
141         if (src->priv_key != NULL) {
142             if (dest->priv_key == NULL) {
143                 dest->priv_key = BN_new();
144                 if (dest->priv_key == NULL)
145                     return NULL;
146             }
147             if (!BN_copy(dest->priv_key, src->priv_key))
148                 return NULL;
149             if (src->group->meth->keycopy
150                 && src->group->meth->keycopy(dest, src) == 0)
151                 return NULL;
152         }
153     }
154
155
156     /* copy the rest */
157     dest->enc_flag = src->enc_flag;
158     dest->conv_form = src->conv_form;
159     dest->version = src->version;
160     dest->flags = src->flags;
161 #ifndef FIPS_MODULE
162     if (!CRYPTO_dup_ex_data(CRYPTO_EX_INDEX_EC_KEY,
163                             &dest->ex_data, &src->ex_data))
164         return NULL;
165 #endif
166
167     if (src->meth != dest->meth) {
168 #if !defined(OPENSSL_NO_ENGINE) && !defined(FIPS_MODULE)
169         if (src->engine != NULL && ENGINE_init(src->engine) == 0)
170             return NULL;
171         dest->engine = src->engine;
172 #endif
173         dest->meth = src->meth;
174     }
175
176     if (src->meth->copy != NULL && src->meth->copy(dest, src) == 0)
177         return NULL;
178
179     dest->dirty_cnt++;
180
181     return dest;
182 }
183
184 EC_KEY *EC_KEY_dup(const EC_KEY *ec_key)
185 {
186     EC_KEY *ret = ec_key_new_method_int(ec_key->libctx, ec_key->propq,
187                                         ec_key->engine);
188
189     if (ret == NULL)
190         return NULL;
191
192     if (EC_KEY_copy(ret, ec_key) == NULL) {
193         EC_KEY_free(ret);
194         return NULL;
195     }
196     return ret;
197 }
198
199 int EC_KEY_up_ref(EC_KEY *r)
200 {
201     int i;
202
203     if (CRYPTO_UP_REF(&r->references, &i, r->lock) <= 0)
204         return 0;
205
206     REF_PRINT_COUNT("EC_KEY", r);
207     REF_ASSERT_ISNT(i < 2);
208     return ((i > 1) ? 1 : 0);
209 }
210
211 ENGINE *EC_KEY_get0_engine(const EC_KEY *eckey)
212 {
213     return eckey->engine;
214 }
215
216 int EC_KEY_generate_key(EC_KEY *eckey)
217 {
218     if (eckey == NULL || eckey->group == NULL) {
219         ECerr(EC_F_EC_KEY_GENERATE_KEY, ERR_R_PASSED_NULL_PARAMETER);
220         return 0;
221     }
222     if (eckey->meth->keygen != NULL) {
223         int ret;
224
225         ret = eckey->meth->keygen(eckey);
226         if (ret == 1)
227             eckey->dirty_cnt++;
228
229         return ret;
230     }
231     ECerr(EC_F_EC_KEY_GENERATE_KEY, EC_R_OPERATION_NOT_SUPPORTED);
232     return 0;
233 }
234
235 int ossl_ec_key_gen(EC_KEY *eckey)
236 {
237     int ret;
238
239     ret = eckey->group->meth->keygen(eckey);
240
241     if (ret == 1)
242         eckey->dirty_cnt++;
243     return ret;
244 }
245
246 /*
247  * ECC Key generation.
248  * See SP800-56AR3 5.6.1.2.2 "Key Pair Generation by Testing Candidates"
249  *
250  * Params:
251  *     libctx A context containing an optional self test callback.
252  *     eckey An EC key object that contains domain params. The generated keypair
253  *           is stored in this object.
254  *     pairwise_test Set to non zero to perform a pairwise test. If the test
255  *                   fails then the keypair is not generated,
256  * Returns 1 if the keypair was generated or 0 otherwise.
257  */
258 int ec_generate_key(OPENSSL_CTX *libctx, EC_KEY *eckey, int pairwise_test)
259 {
260     int ok = 0;
261     BIGNUM *priv_key = NULL;
262     const BIGNUM *order = NULL;
263     EC_POINT *pub_key = NULL;
264     const EC_GROUP *group = eckey->group;
265     BN_CTX *ctx = BN_CTX_secure_new_ex(eckey->libctx);
266
267     if (ctx == NULL)
268         goto err;
269
270     if (eckey->priv_key == NULL) {
271         priv_key = BN_secure_new();
272         if (priv_key == NULL)
273             goto err;
274     } else
275         priv_key = eckey->priv_key;
276
277     /*
278      * Steps (1-2): Check domain parameters and security strength.
279      * These steps must be done by the user. This would need to be
280      * stated in the security policy.
281      */
282
283     order = EC_GROUP_get0_order(group);
284     if (order == NULL)
285         goto err;
286
287     /*
288      * Steps (3-7): priv_key = DRBG_RAND(order_n_bits) (range [1, n-1]).
289      * Although this is slightly different from the standard, it is effectively
290      * equivalent as it gives an unbiased result ranging from 1..n-1. It is also
291      * faster as the standard needs to retry more often. Also doing
292      * 1 + rand[0..n-2] would effect the way that tests feed dummy entropy into
293      * rand so the simpler backward compatible method has been used here.
294      */
295     do
296         if (!BN_priv_rand_range_ex(priv_key, order, ctx))
297             goto err;
298     while (BN_is_zero(priv_key)) ;
299
300     if (eckey->pub_key == NULL) {
301         pub_key = EC_POINT_new(group);
302         if (pub_key == NULL)
303             goto err;
304     } else
305         pub_key = eckey->pub_key;
306
307     /* Step (8) : pub_key = priv_key * G (where G is a point on the curve) */
308     if (!EC_POINT_mul(group, pub_key, priv_key, NULL, NULL, ctx))
309         goto err;
310
311     eckey->priv_key = priv_key;
312     eckey->pub_key = pub_key;
313     priv_key = NULL;
314     pub_key = NULL;
315
316     eckey->dirty_cnt++;
317
318 #ifdef FIPS_MODULE
319     pairwise_test = 1;
320 #endif /* FIPS_MODULE */
321
322     ok = 1;
323     if (pairwise_test) {
324         OSSL_CALLBACK *cb = NULL;
325         void *cbarg = NULL;
326
327         OSSL_SELF_TEST_get_callback(libctx, &cb, &cbarg);
328         ok = ecdsa_keygen_pairwise_test(eckey, cb, cbarg);
329     }
330 err:
331     /* Step (9): If there is an error return an invalid keypair. */
332     if (!ok) {
333         BN_clear(eckey->priv_key);
334         if (eckey->pub_key != NULL)
335             EC_POINT_set_to_infinity(group, eckey->pub_key);
336     }
337
338     EC_POINT_free(pub_key);
339     BN_clear_free(priv_key);
340     BN_CTX_free(ctx);
341     return ok;
342 }
343
344 int ec_key_simple_generate_key(EC_KEY *eckey)
345 {
346     return ec_generate_key(NULL, eckey, 0);
347 }
348
349 int ec_key_simple_generate_public_key(EC_KEY *eckey)
350 {
351     int ret;
352
353     /*
354      * See SP800-56AR3 5.6.1.2.2: Step (8)
355      * pub_key = priv_key * G (where G is a point on the curve)
356      */
357     ret = EC_POINT_mul(eckey->group, eckey->pub_key, eckey->priv_key, NULL,
358                        NULL, NULL);
359
360     if (ret == 1)
361         eckey->dirty_cnt++;
362
363     return ret;
364 }
365
366 int EC_KEY_check_key(const EC_KEY *eckey)
367 {
368     if (eckey == NULL || eckey->group == NULL || eckey->pub_key == NULL) {
369         ECerr(EC_F_EC_KEY_CHECK_KEY, ERR_R_PASSED_NULL_PARAMETER);
370         return 0;
371     }
372
373     if (eckey->group->meth->keycheck == NULL) {
374         ECerr(EC_F_EC_KEY_CHECK_KEY, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
375         return 0;
376     }
377
378     return eckey->group->meth->keycheck(eckey);
379 }
380
381 /*
382  * Check the range of the EC public key.
383  * See SP800-56A R3 Section 5.6.2.3.3 (Part 2)
384  * i.e.
385  *  - If q = odd prime p: Verify that xQ and yQ are integers in the
386  *    interval[0, p - 1], OR
387  *  - If q = 2m: Verify that xQ and yQ are bit strings of length m bits.
388  * Returns 1 if the public key has a valid range, otherwise it returns 0.
389  */
390 static int ec_key_public_range_check(BN_CTX *ctx, const EC_KEY *key)
391 {
392     int ret = 0;
393     BIGNUM *x, *y;
394
395     BN_CTX_start(ctx);
396     x = BN_CTX_get(ctx);
397     y = BN_CTX_get(ctx);
398     if (y == NULL)
399         goto err;
400
401     if (!EC_POINT_get_affine_coordinates(key->group, key->pub_key, x, y, ctx))
402         goto err;
403
404     if (EC_GROUP_get_field_type(key->group) == NID_X9_62_prime_field) {
405         if (BN_is_negative(x)
406             || BN_cmp(x, key->group->field) >= 0
407             || BN_is_negative(y)
408             || BN_cmp(y, key->group->field) >= 0) {
409             goto err;
410         }
411     } else {
412         int m = EC_GROUP_get_degree(key->group);
413         if (BN_num_bits(x) > m || BN_num_bits(y) > m) {
414             goto err;
415         }
416     }
417     ret = 1;
418 err:
419     BN_CTX_end(ctx);
420     return ret;
421 }
422
423 /*
424  * ECC Key validation as specified in SP800-56A R3.
425  * Section 5.6.2.3.3 ECC Full Public-Key Validation.
426  */
427 int ec_key_public_check(const EC_KEY *eckey, BN_CTX *ctx)
428 {
429     int ret = 0;
430     EC_POINT *point = NULL;
431     const BIGNUM *order = NULL;
432
433     if (eckey == NULL || eckey->group == NULL || eckey->pub_key == NULL) {
434         ECerr(0, ERR_R_PASSED_NULL_PARAMETER);
435         return 0;
436     }
437
438     /* 5.6.2.3.3 (Step 1): Q != infinity */
439     if (EC_POINT_is_at_infinity(eckey->group, eckey->pub_key)) {
440         ECerr(0, EC_R_POINT_AT_INFINITY);
441         return 0;
442     }
443
444     point = EC_POINT_new(eckey->group);
445     if (point == NULL)
446         return 0;
447
448     /* 5.6.2.3.3 (Step 2) Test if the public key is in range */
449     if (!ec_key_public_range_check(ctx, eckey)) {
450         ECerr(0, EC_R_COORDINATES_OUT_OF_RANGE);
451         goto err;
452     }
453
454     /* 5.6.2.3.3 (Step 3) is the pub_key on the elliptic curve */
455     if (EC_POINT_is_on_curve(eckey->group, eckey->pub_key, ctx) <= 0) {
456         ECerr(0, EC_R_POINT_IS_NOT_ON_CURVE);
457         goto err;
458     }
459
460     order = eckey->group->order;
461     if (BN_is_zero(order)) {
462         ECerr(0, EC_R_INVALID_GROUP_ORDER);
463         goto err;
464     }
465     /* 5.6.2.3.3 (Step 4) : pub_key * order is the point at infinity. */
466     if (!EC_POINT_mul(eckey->group, point, NULL, eckey->pub_key, order, ctx)) {
467         ECerr(0, ERR_R_EC_LIB);
468         goto err;
469     }
470     if (!EC_POINT_is_at_infinity(eckey->group, point)) {
471         ECerr(0, EC_R_WRONG_ORDER);
472         goto err;
473     }
474     ret = 1;
475 err:
476     EC_POINT_free(point);
477     return ret;
478 }
479
480 /*
481  * ECC Key validation as specified in SP800-56A R3.
482  * Section 5.6.2.1.2 Owner Assurance of Private-Key Validity
483  * The private key is in the range [1, order-1]
484  */
485 int ec_key_private_check(const EC_KEY *eckey)
486 {
487     if (eckey == NULL || eckey->group == NULL || eckey->priv_key == NULL) {
488         ECerr(0, ERR_R_PASSED_NULL_PARAMETER);
489         return 0;
490     }
491     if (BN_cmp(eckey->priv_key, BN_value_one()) < 0
492         || BN_cmp(eckey->priv_key, eckey->group->order) >= 0) {
493         ECerr(0, EC_R_INVALID_PRIVATE_KEY);
494         return 0;
495     }
496     return 1;
497 }
498
499 /*
500  * ECC Key validation as specified in SP800-56A R3.
501  * Section 5.6.2.1.4 Owner Assurance of Pair-wise Consistency (b)
502  * Check if generator * priv_key = pub_key
503  */
504 int ec_key_pairwise_check(const EC_KEY *eckey, BN_CTX *ctx)
505 {
506     int ret = 0;
507     EC_POINT *point = NULL;
508
509     if (eckey == NULL
510        || eckey->group == NULL
511        || eckey->pub_key == NULL
512        || eckey->priv_key == NULL) {
513         ECerr(0, ERR_R_PASSED_NULL_PARAMETER);
514         return 0;
515     }
516
517     point = EC_POINT_new(eckey->group);
518     if (point == NULL)
519         goto err;
520
521
522     if (!EC_POINT_mul(eckey->group, point, eckey->priv_key, NULL, NULL, ctx)) {
523         ECerr(0, ERR_R_EC_LIB);
524         goto err;
525     }
526     if (EC_POINT_cmp(eckey->group, point, eckey->pub_key, ctx) != 0) {
527         ECerr(0, EC_R_INVALID_PRIVATE_KEY);
528         goto err;
529     }
530     ret = 1;
531 err:
532     EC_POINT_free(point);
533     return ret;
534 }
535
536
537 /*
538  * ECC Key validation as specified in SP800-56A R3.
539  *    Section 5.6.2.3.3 ECC Full Public-Key Validation
540  *    Section 5.6.2.1.2 Owner Assurance of Private-Key Validity
541  *    Section 5.6.2.1.4 Owner Assurance of Pair-wise Consistency
542  * NOTES:
543  *    Before calling this method in fips mode, there should be an assurance that
544  *    an approved elliptic-curve group is used.
545  * Returns 1 if the key is valid, otherwise it returns 0.
546  */
547 int ec_key_simple_check_key(const EC_KEY *eckey)
548 {
549     int ok = 0;
550     BN_CTX *ctx = NULL;
551
552     if (eckey == NULL) {
553         ECerr(0, ERR_R_PASSED_NULL_PARAMETER);
554         return 0;
555     }
556     if ((ctx = BN_CTX_new_ex(eckey->libctx)) == NULL)
557         return 0;
558
559     if (!ec_key_public_check(eckey, ctx))
560         goto err;
561
562     if (eckey->priv_key != NULL) {
563         if (!ec_key_private_check(eckey)
564             || !ec_key_pairwise_check(eckey, ctx))
565             goto err;
566     }
567     ok = 1;
568 err:
569     BN_CTX_free(ctx);
570     return ok;
571 }
572
573 int EC_KEY_set_public_key_affine_coordinates(EC_KEY *key, BIGNUM *x,
574                                              BIGNUM *y)
575 {
576     BN_CTX *ctx = NULL;
577     BIGNUM *tx, *ty;
578     EC_POINT *point = NULL;
579     int ok = 0;
580
581     if (key == NULL || key->group == NULL || x == NULL || y == NULL) {
582         ECerr(EC_F_EC_KEY_SET_PUBLIC_KEY_AFFINE_COORDINATES,
583               ERR_R_PASSED_NULL_PARAMETER);
584         return 0;
585     }
586     ctx = BN_CTX_new_ex(key->libctx);
587     if (ctx == NULL)
588         return 0;
589
590     BN_CTX_start(ctx);
591     point = EC_POINT_new(key->group);
592
593     if (point == NULL)
594         goto err;
595
596     tx = BN_CTX_get(ctx);
597     ty = BN_CTX_get(ctx);
598     if (ty == NULL)
599         goto err;
600
601     if (!EC_POINT_set_affine_coordinates(key->group, point, x, y, ctx))
602         goto err;
603     if (!EC_POINT_get_affine_coordinates(key->group, point, tx, ty, ctx))
604         goto err;
605
606     /*
607      * Check if retrieved coordinates match originals. The range check is done
608      * inside EC_KEY_check_key().
609      */
610     if (BN_cmp(x, tx) || BN_cmp(y, ty)) {
611         ECerr(EC_F_EC_KEY_SET_PUBLIC_KEY_AFFINE_COORDINATES,
612               EC_R_COORDINATES_OUT_OF_RANGE);
613         goto err;
614     }
615
616     /* EC_KEY_set_public_key updates dirty_cnt */
617     if (!EC_KEY_set_public_key(key, point))
618         goto err;
619
620     if (EC_KEY_check_key(key) == 0)
621         goto err;
622
623     ok = 1;
624
625  err:
626     BN_CTX_end(ctx);
627     BN_CTX_free(ctx);
628     EC_POINT_free(point);
629     return ok;
630
631 }
632
633 OPENSSL_CTX *ec_key_get_libctx(const EC_KEY *key)
634 {
635     return key->libctx;
636 }
637
638 const char *ec_key_get0_propq(const EC_KEY *key)
639 {
640     return key->propq;
641 }
642
643 const EC_GROUP *EC_KEY_get0_group(const EC_KEY *key)
644 {
645     return key->group;
646 }
647
648 int EC_KEY_set_group(EC_KEY *key, const EC_GROUP *group)
649 {
650     if (key->meth->set_group != NULL && key->meth->set_group(key, group) == 0)
651         return 0;
652     EC_GROUP_free(key->group);
653     key->group = EC_GROUP_dup(group);
654     key->dirty_cnt++;
655     return (key->group == NULL) ? 0 : 1;
656 }
657
658 const BIGNUM *EC_KEY_get0_private_key(const EC_KEY *key)
659 {
660     return key->priv_key;
661 }
662
663 int EC_KEY_set_private_key(EC_KEY *key, const BIGNUM *priv_key)
664 {
665     int fixed_top;
666     const BIGNUM *order = NULL;
667     BIGNUM *tmp_key = NULL;
668
669     if (key->group == NULL || key->group->meth == NULL)
670         return 0;
671
672     /*
673      * Not only should key->group be set, but it should also be in a valid
674      * fully initialized state.
675      *
676      * Specifically, to operate in constant time, we need that the group order
677      * is set, as we use its length as the fixed public size of any scalar used
678      * as an EC private key.
679      */
680     order = EC_GROUP_get0_order(key->group);
681     if (order == NULL || BN_is_zero(order))
682         return 0; /* This should never happen */
683
684     if (key->group->meth->set_private != NULL
685         && key->group->meth->set_private(key, priv_key) == 0)
686         return 0;
687     if (key->meth->set_private != NULL
688         && key->meth->set_private(key, priv_key) == 0)
689         return 0;
690
691     /*
692      * We should never leak the bit length of the secret scalar in the key,
693      * so we always set the `BN_FLG_CONSTTIME` flag on the internal `BIGNUM`
694      * holding the secret scalar.
695      *
696      * This is important also because `BN_dup()` (and `BN_copy()`) do not
697      * propagate the `BN_FLG_CONSTTIME` flag from the source `BIGNUM`, and
698      * this brings an extra risk of inadvertently losing the flag, even when
699      * the caller specifically set it.
700      *
701      * The propagation has been turned on and off a few times in the past
702      * years because in some conditions has shown unintended consequences in
703      * some code paths, so at the moment we can't fix this in the BN layer.
704      *
705      * In `EC_KEY_set_private_key()` we can work around the propagation by
706      * manually setting the flag after `BN_dup()` as we know for sure that
707      * inside the EC module the `BN_FLG_CONSTTIME` is always treated
708      * correctly and should not generate unintended consequences.
709      *
710      * Setting the BN_FLG_CONSTTIME flag alone is never enough, we also have
711      * to preallocate the BIGNUM internal buffer to a fixed public size big
712      * enough that operations performed during the processing never trigger
713      * a realloc which would leak the size of the scalar through memory
714      * accesses.
715      *
716      * Fixed Length
717      * ------------
718      *
719      * The order of the large prime subgroup of the curve is our choice for
720      * a fixed public size, as that is generally the upper bound for
721      * generating a private key in EC cryptosystems and should fit all valid
722      * secret scalars.
723      *
724      * For preallocating the BIGNUM storage we look at the number of "words"
725      * required for the internal representation of the order, and we
726      * preallocate 2 extra "words" in case any of the subsequent processing
727      * might temporarily overflow the order length.
728      */
729     tmp_key = BN_dup(priv_key);
730     if (tmp_key == NULL)
731         return 0;
732
733     BN_set_flags(tmp_key, BN_FLG_CONSTTIME);
734
735     fixed_top = bn_get_top(order) + 2;
736     if (bn_wexpand(tmp_key, fixed_top) == NULL) {
737         BN_clear_free(tmp_key);
738         return 0;
739     }
740
741     BN_clear_free(key->priv_key);
742     key->priv_key = tmp_key;
743     key->dirty_cnt++;
744
745     return 1;
746 }
747
748 const EC_POINT *EC_KEY_get0_public_key(const EC_KEY *key)
749 {
750     return key->pub_key;
751 }
752
753 int EC_KEY_set_public_key(EC_KEY *key, const EC_POINT *pub_key)
754 {
755     if (key->meth->set_public != NULL
756         && key->meth->set_public(key, pub_key) == 0)
757         return 0;
758     EC_POINT_free(key->pub_key);
759     key->pub_key = EC_POINT_dup(pub_key, key->group);
760     key->dirty_cnt++;
761     return (key->pub_key == NULL) ? 0 : 1;
762 }
763
764 unsigned int EC_KEY_get_enc_flags(const EC_KEY *key)
765 {
766     return key->enc_flag;
767 }
768
769 void EC_KEY_set_enc_flags(EC_KEY *key, unsigned int flags)
770 {
771     key->enc_flag = flags;
772 }
773
774 point_conversion_form_t EC_KEY_get_conv_form(const EC_KEY *key)
775 {
776     return key->conv_form;
777 }
778
779 void EC_KEY_set_conv_form(EC_KEY *key, point_conversion_form_t cform)
780 {
781     key->conv_form = cform;
782     if (key->group != NULL)
783         EC_GROUP_set_point_conversion_form(key->group, cform);
784 }
785
786 void EC_KEY_set_asn1_flag(EC_KEY *key, int flag)
787 {
788     if (key->group != NULL)
789         EC_GROUP_set_asn1_flag(key->group, flag);
790 }
791
792 #ifndef OPENSSL_NO_DEPRECATED_3_0
793 int EC_KEY_precompute_mult(EC_KEY *key, BN_CTX *ctx)
794 {
795     if (key->group == NULL)
796         return 0;
797     return EC_GROUP_precompute_mult(key->group, ctx);
798 }
799 #endif
800
801 int EC_KEY_get_flags(const EC_KEY *key)
802 {
803     return key->flags;
804 }
805
806 void EC_KEY_set_flags(EC_KEY *key, int flags)
807 {
808     key->flags |= flags;
809     key->dirty_cnt++;
810 }
811
812 void EC_KEY_clear_flags(EC_KEY *key, int flags)
813 {
814     key->flags &= ~flags;
815     key->dirty_cnt++;
816 }
817
818 size_t EC_KEY_key2buf(const EC_KEY *key, point_conversion_form_t form,
819                         unsigned char **pbuf, BN_CTX *ctx)
820 {
821     if (key == NULL || key->pub_key == NULL || key->group == NULL)
822         return 0;
823     return EC_POINT_point2buf(key->group, key->pub_key, form, pbuf, ctx);
824 }
825
826 int EC_KEY_oct2key(EC_KEY *key, const unsigned char *buf, size_t len,
827                    BN_CTX *ctx)
828 {
829     if (key == NULL || key->group == NULL)
830         return 0;
831     if (key->pub_key == NULL)
832         key->pub_key = EC_POINT_new(key->group);
833     if (key->pub_key == NULL)
834         return 0;
835     if (EC_POINT_oct2point(key->group, key->pub_key, buf, len, ctx) == 0)
836         return 0;
837     key->dirty_cnt++;
838     /*
839      * Save the point conversion form.
840      * For non-custom curves the first octet of the buffer (excluding
841      * the last significant bit) contains the point conversion form.
842      * EC_POINT_oct2point() has already performed sanity checking of
843      * the buffer so we know it is valid.
844      */
845     if ((key->group->meth->flags & EC_FLAGS_CUSTOM_CURVE) == 0)
846         key->conv_form = (point_conversion_form_t)(buf[0] & ~0x01);
847     return 1;
848 }
849
850 size_t EC_KEY_priv2oct(const EC_KEY *eckey,
851                        unsigned char *buf, size_t len)
852 {
853     if (eckey->group == NULL || eckey->group->meth == NULL)
854         return 0;
855     if (eckey->group->meth->priv2oct == NULL) {
856         ECerr(EC_F_EC_KEY_PRIV2OCT, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
857         return 0;
858     }
859
860     return eckey->group->meth->priv2oct(eckey, buf, len);
861 }
862
863 size_t ec_key_simple_priv2oct(const EC_KEY *eckey,
864                               unsigned char *buf, size_t len)
865 {
866     size_t buf_len;
867
868     buf_len = (EC_GROUP_order_bits(eckey->group) + 7) / 8;
869     if (eckey->priv_key == NULL)
870         return 0;
871     if (buf == NULL)
872         return buf_len;
873     else if (len < buf_len)
874         return 0;
875
876     /* Octetstring may need leading zeros if BN is to short */
877
878     if (BN_bn2binpad(eckey->priv_key, buf, buf_len) == -1) {
879         ECerr(EC_F_EC_KEY_SIMPLE_PRIV2OCT, EC_R_BUFFER_TOO_SMALL);
880         return 0;
881     }
882
883     return buf_len;
884 }
885
886 int EC_KEY_oct2priv(EC_KEY *eckey, const unsigned char *buf, size_t len)
887 {
888     int ret;
889
890     if (eckey->group == NULL || eckey->group->meth == NULL)
891         return 0;
892     if (eckey->group->meth->oct2priv == NULL) {
893         ECerr(EC_F_EC_KEY_OCT2PRIV, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
894         return 0;
895     }
896     ret = eckey->group->meth->oct2priv(eckey, buf, len);
897     if (ret == 1)
898         eckey->dirty_cnt++;
899     return ret;
900 }
901
902 int ec_key_simple_oct2priv(EC_KEY *eckey, const unsigned char *buf, size_t len)
903 {
904     if (eckey->priv_key == NULL)
905         eckey->priv_key = BN_secure_new();
906     if (eckey->priv_key == NULL) {
907         ECerr(EC_F_EC_KEY_SIMPLE_OCT2PRIV, ERR_R_MALLOC_FAILURE);
908         return 0;
909     }
910     eckey->priv_key = BN_bin2bn(buf, len, eckey->priv_key);
911     if (eckey->priv_key == NULL) {
912         ECerr(EC_F_EC_KEY_SIMPLE_OCT2PRIV, ERR_R_BN_LIB);
913         return 0;
914     }
915     eckey->dirty_cnt++;
916     return 1;
917 }
918
919 size_t EC_KEY_priv2buf(const EC_KEY *eckey, unsigned char **pbuf)
920 {
921     size_t len;
922     unsigned char *buf;
923
924     len = EC_KEY_priv2oct(eckey, NULL, 0);
925     if (len == 0)
926         return 0;
927     if ((buf = OPENSSL_malloc(len)) == NULL) {
928         ECerr(EC_F_EC_KEY_PRIV2BUF, ERR_R_MALLOC_FAILURE);
929         return 0;
930     }
931     len = EC_KEY_priv2oct(eckey, buf, len);
932     if (len == 0) {
933         OPENSSL_free(buf);
934         return 0;
935     }
936     *pbuf = buf;
937     return len;
938 }
939
940 int EC_KEY_can_sign(const EC_KEY *eckey)
941 {
942     if (eckey->group == NULL || eckey->group->meth == NULL
943         || (eckey->group->meth->flags & EC_FLAGS_NO_SIGN))
944         return 0;
945     return 1;
946 }
947
948 /*
949  * FIPS 140-2 IG 9.9 AS09.33
950  * Perform a sign/verify operation.
951  *
952  * NOTE: When generating keys for key-agreement schemes - FIPS 140-2 IG 9.9
953  * states that no additional pairwise tests are required (apart from the tests
954  * specified in SP800-56A) when generating keys. Hence pairwise ECDH tests are
955  * omitted here.
956  */
957 static int ecdsa_keygen_pairwise_test(EC_KEY *eckey, OSSL_CALLBACK *cb,
958                                       void *cbarg)
959 {
960     int ret = 0;
961     unsigned char dgst[16] = {0};
962     int dgst_len = (int)sizeof(dgst);
963     ECDSA_SIG *sig = NULL;
964     OSSL_SELF_TEST *st = NULL;
965
966     st = OSSL_SELF_TEST_new(cb, cbarg);
967     if (st == NULL)
968         return 0;
969
970     OSSL_SELF_TEST_onbegin(st, OSSL_SELF_TEST_TYPE_PCT,
971                            OSSL_SELF_TEST_DESC_PCT_ECDSA);
972
973     sig = ECDSA_do_sign(dgst, dgst_len, eckey);
974     if (sig == NULL)
975         goto err;
976
977     OSSL_SELF_TEST_oncorrupt_byte(st, dgst);
978
979     if (ECDSA_do_verify(dgst, dgst_len, sig, eckey) != 1)
980         goto err;
981
982     ret = 1;
983 err:
984     OSSL_SELF_TEST_onend(st, ret);
985     OSSL_SELF_TEST_free(st);
986     ECDSA_SIG_free(sig);
987     return ret;
988 }