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