blob: a6d469767adfad1c9095cc58c567b10c71e95cfa [file] [log] [blame]
Adam Langleyd9e397b2015-01-22 14:27:53 -08001/* Originally written by Bodo Moeller for the OpenSSL project.
2 * ====================================================================
3 * Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 *
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in
14 * the documentation and/or other materials provided with the
15 * distribution.
16 *
17 * 3. All advertising materials mentioning features or use of this
18 * software must display the following acknowledgment:
19 * "This product includes software developed by the OpenSSL Project
20 * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
21 *
22 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
23 * endorse or promote products derived from this software without
24 * prior written permission. For written permission, please contact
25 * openssl-core@openssl.org.
26 *
27 * 5. Products derived from this software may not be called "OpenSSL"
28 * nor may "OpenSSL" appear in their names without prior written
29 * permission of the OpenSSL Project.
30 *
31 * 6. Redistributions of any form whatsoever must retain the following
32 * acknowledgment:
33 * "This product includes software developed by the OpenSSL Project
34 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
35 *
36 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
37 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
38 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
39 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
40 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
41 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
42 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
43 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
44 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
45 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
46 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
47 * OF THE POSSIBILITY OF SUCH DAMAGE.
48 * ====================================================================
49 *
50 * This product includes cryptographic software written by Eric Young
51 * (eay@cryptsoft.com). This product includes software written by Tim
52 * Hudson (tjh@cryptsoft.com).
53 *
54 */
55/* ====================================================================
56 * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
57 *
58 * Portions of the attached software ("Contribution") are developed by
59 * SUN MICROSYSTEMS, INC., and are contributed to the OpenSSL project.
60 *
61 * The Contribution is licensed pursuant to the OpenSSL open source
62 * license provided above.
63 *
64 * The elliptic curve binary polynomial software is originally written by
65 * Sheueling Chang Shantz and Douglas Stebila of Sun Microsystems
66 * Laboratories. */
67
68#include <openssl/ec_key.h>
69
70#include <string.h>
71
72#include <openssl/ec.h>
Robert Sloan572a4e22017-04-17 10:52:19 -070073#include <openssl/ecdsa.h>
Adam Langleyd9e397b2015-01-22 14:27:53 -080074#include <openssl/engine.h>
75#include <openssl/err.h>
76#include <openssl/ex_data.h>
77#include <openssl/mem.h>
Adam Langleye9ada862015-05-11 17:20:37 -070078#include <openssl/thread.h>
Adam Langleyd9e397b2015-01-22 14:27:53 -080079
80#include "internal.h"
Robert Sloan8ff03552017-06-14 12:40:58 -070081#include "../delocate.h"
82#include "../../internal.h"
Adam Langleyd9e397b2015-01-22 14:27:53 -080083
84
Robert Sloan8ff03552017-06-14 12:40:58 -070085DEFINE_STATIC_EX_DATA_CLASS(g_ec_ex_data_class);
Adam Langleye9ada862015-05-11 17:20:37 -070086
Robert Sloanab8b8882018-03-26 11:39:51 -070087static EC_WRAPPED_SCALAR *ec_wrapped_scalar_new(const EC_GROUP *group) {
88 EC_WRAPPED_SCALAR *wrapped = OPENSSL_malloc(sizeof(EC_WRAPPED_SCALAR));
89 if (wrapped == NULL) {
90 OPENSSL_PUT_ERROR(EC, ERR_R_MALLOC_FAILURE);
91 return NULL;
92 }
93
94 OPENSSL_memset(wrapped, 0, sizeof(EC_WRAPPED_SCALAR));
95 wrapped->bignum.d = wrapped->scalar.words;
96 wrapped->bignum.width = group->order.width;
97 wrapped->bignum.dmax = group->order.width;
98 wrapped->bignum.flags = BN_FLG_STATIC_DATA;
99 return wrapped;
100}
101
102static void ec_wrapped_scalar_free(EC_WRAPPED_SCALAR *scalar) {
103 OPENSSL_free(scalar);
104}
105
Adam Langleyd9e397b2015-01-22 14:27:53 -0800106EC_KEY *EC_KEY_new(void) { return EC_KEY_new_method(NULL); }
107
108EC_KEY *EC_KEY_new_method(const ENGINE *engine) {
David Benjamin4969cc92016-04-22 15:02:23 -0400109 EC_KEY *ret = OPENSSL_malloc(sizeof(EC_KEY));
Adam Langleyd9e397b2015-01-22 14:27:53 -0800110 if (ret == NULL) {
Kenny Rootb8494592015-09-25 02:29:14 +0000111 OPENSSL_PUT_ERROR(EC, ERR_R_MALLOC_FAILURE);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800112 return NULL;
113 }
114
Robert Sloan69939df2017-01-09 10:53:07 -0800115 OPENSSL_memset(ret, 0, sizeof(EC_KEY));
Adam Langleyd9e397b2015-01-22 14:27:53 -0800116
117 if (engine) {
118 ret->ecdsa_meth = ENGINE_get_ECDSA_method(engine);
119 }
120 if (ret->ecdsa_meth) {
121 METHOD_ref(ret->ecdsa_meth);
122 }
123
Adam Langleyd9e397b2015-01-22 14:27:53 -0800124 ret->conv_form = POINT_CONVERSION_UNCOMPRESSED;
125 ret->references = 1;
126
Adam Langley4139edb2016-01-13 15:00:54 -0800127 CRYPTO_new_ex_data(&ret->ex_data);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800128
129 if (ret->ecdsa_meth && ret->ecdsa_meth->init && !ret->ecdsa_meth->init(ret)) {
Robert Sloan8ff03552017-06-14 12:40:58 -0700130 CRYPTO_free_ex_data(g_ec_ex_data_class_bss_get(), ret, &ret->ex_data);
Adam Langley4139edb2016-01-13 15:00:54 -0800131 if (ret->ecdsa_meth) {
132 METHOD_unref(ret->ecdsa_meth);
133 }
134 OPENSSL_free(ret);
135 return NULL;
Adam Langleyd9e397b2015-01-22 14:27:53 -0800136 }
137
138 return ret;
Adam Langleyd9e397b2015-01-22 14:27:53 -0800139}
140
141EC_KEY *EC_KEY_new_by_curve_name(int nid) {
142 EC_KEY *ret = EC_KEY_new();
143 if (ret == NULL) {
Kenny Rootb8494592015-09-25 02:29:14 +0000144 OPENSSL_PUT_ERROR(EC, ERR_R_MALLOC_FAILURE);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800145 return NULL;
146 }
147 ret->group = EC_GROUP_new_by_curve_name(nid);
148 if (ret->group == NULL) {
149 EC_KEY_free(ret);
150 return NULL;
151 }
152 return ret;
153}
154
155void EC_KEY_free(EC_KEY *r) {
156 if (r == NULL) {
157 return;
158 }
159
Adam Langleyf4e42722015-06-04 17:45:09 -0700160 if (!CRYPTO_refcount_dec_and_test_zero(&r->references)) {
Adam Langleyd9e397b2015-01-22 14:27:53 -0800161 return;
162 }
163
164 if (r->ecdsa_meth) {
165 if (r->ecdsa_meth->finish) {
166 r->ecdsa_meth->finish(r);
167 }
168 METHOD_unref(r->ecdsa_meth);
169 }
170
Adam Langleye9ada862015-05-11 17:20:37 -0700171 EC_GROUP_free(r->group);
172 EC_POINT_free(r->pub_key);
Robert Sloanab8b8882018-03-26 11:39:51 -0700173 ec_wrapped_scalar_free(r->priv_key);
Robert Sloan8ff03552017-06-14 12:40:58 -0700174 BN_free(r->fixed_k);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800175
Robert Sloan8ff03552017-06-14 12:40:58 -0700176 CRYPTO_free_ex_data(g_ec_ex_data_class_bss_get(), r, &r->ex_data);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800177
Adam Langleyd9e397b2015-01-22 14:27:53 -0800178 OPENSSL_free(r);
179}
180
Robert Sloanab8b8882018-03-26 11:39:51 -0700181EC_KEY *EC_KEY_dup(const EC_KEY *src) {
182 if (src == NULL) {
Kenny Rootb8494592015-09-25 02:29:14 +0000183 OPENSSL_PUT_ERROR(EC, ERR_R_PASSED_NULL_PARAMETER);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800184 return NULL;
185 }
Adam Langleyd9e397b2015-01-22 14:27:53 -0800186
Adam Langleyd9e397b2015-01-22 14:27:53 -0800187 EC_KEY *ret = EC_KEY_new();
188 if (ret == NULL) {
189 return NULL;
190 }
Robert Sloanab8b8882018-03-26 11:39:51 -0700191
192 if ((src->group != NULL &&
193 !EC_KEY_set_group(ret, src->group)) ||
194 (src->pub_key != NULL &&
195 !EC_KEY_set_public_key(ret, src->pub_key)) ||
196 (src->priv_key != NULL &&
197 !EC_KEY_set_private_key(ret, EC_KEY_get0_private_key(src)))) {
Adam Langleyd9e397b2015-01-22 14:27:53 -0800198 EC_KEY_free(ret);
199 return NULL;
200 }
Robert Sloanab8b8882018-03-26 11:39:51 -0700201
202 ret->enc_flag = src->enc_flag;
203 ret->conv_form = src->conv_form;
Adam Langleyd9e397b2015-01-22 14:27:53 -0800204 return ret;
205}
206
207int EC_KEY_up_ref(EC_KEY *r) {
Adam Langleyf4e42722015-06-04 17:45:09 -0700208 CRYPTO_refcount_inc(&r->references);
209 return 1;
Adam Langleyd9e397b2015-01-22 14:27:53 -0800210}
211
212int EC_KEY_is_opaque(const EC_KEY *key) {
213 return key->ecdsa_meth && (key->ecdsa_meth->flags & ECDSA_FLAG_OPAQUE);
214}
215
216const EC_GROUP *EC_KEY_get0_group(const EC_KEY *key) { return key->group; }
217
218int EC_KEY_set_group(EC_KEY *key, const EC_GROUP *group) {
Robert Sloan0da43952018-01-03 15:13:14 -0800219 // If |key| already has a group, it is an error to switch to another one.
220 if (key->group != NULL) {
221 if (EC_GROUP_cmp(key->group, group, NULL) != 0) {
222 OPENSSL_PUT_ERROR(EC, EC_R_GROUP_MISMATCH);
223 return 0;
224 }
225 return 1;
226 }
227
228 assert(key->priv_key == NULL);
229 assert(key->pub_key == NULL);
230
Adam Langleye9ada862015-05-11 17:20:37 -0700231 EC_GROUP_free(key->group);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800232 key->group = EC_GROUP_dup(group);
Robert Sloan0da43952018-01-03 15:13:14 -0800233 return key->group != NULL;
Adam Langleyd9e397b2015-01-22 14:27:53 -0800234}
235
236const BIGNUM *EC_KEY_get0_private_key(const EC_KEY *key) {
Robert Sloanab8b8882018-03-26 11:39:51 -0700237 return key->priv_key != NULL ? &key->priv_key->bignum : NULL;
Adam Langleyd9e397b2015-01-22 14:27:53 -0800238}
239
240int EC_KEY_set_private_key(EC_KEY *key, const BIGNUM *priv_key) {
Robert Sloan0da43952018-01-03 15:13:14 -0800241 if (key->group == NULL) {
242 OPENSSL_PUT_ERROR(EC, EC_R_MISSING_PARAMETERS);
243 return 0;
244 }
245
Robert Sloanab8b8882018-03-26 11:39:51 -0700246 EC_WRAPPED_SCALAR *scalar = ec_wrapped_scalar_new(key->group);
247 if (scalar == NULL) {
Adam Langley4139edb2016-01-13 15:00:54 -0800248 return 0;
249 }
Robert Sloanab8b8882018-03-26 11:39:51 -0700250 if (!ec_bignum_to_scalar(key->group, &scalar->scalar, priv_key)) {
251 OPENSSL_PUT_ERROR(EC, EC_R_WRONG_ORDER);
252 ec_wrapped_scalar_free(scalar);
253 return 0;
254 }
255 ec_wrapped_scalar_free(key->priv_key);
256 key->priv_key = scalar;
257 return 1;
Adam Langleyd9e397b2015-01-22 14:27:53 -0800258}
259
260const EC_POINT *EC_KEY_get0_public_key(const EC_KEY *key) {
261 return key->pub_key;
262}
263
264int EC_KEY_set_public_key(EC_KEY *key, const EC_POINT *pub_key) {
Robert Sloan0da43952018-01-03 15:13:14 -0800265 if (key->group == NULL) {
266 OPENSSL_PUT_ERROR(EC, EC_R_MISSING_PARAMETERS);
267 return 0;
268 }
269
270 if (EC_GROUP_cmp(key->group, pub_key->group, NULL) != 0) {
271 OPENSSL_PUT_ERROR(EC, EC_R_GROUP_MISMATCH);
272 return 0;
273 }
274
Adam Langleye9ada862015-05-11 17:20:37 -0700275 EC_POINT_free(key->pub_key);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800276 key->pub_key = EC_POINT_dup(pub_key, key->group);
277 return (key->pub_key == NULL) ? 0 : 1;
278}
279
280unsigned int EC_KEY_get_enc_flags(const EC_KEY *key) { return key->enc_flag; }
281
282void EC_KEY_set_enc_flags(EC_KEY *key, unsigned int flags) {
283 key->enc_flag = flags;
284}
285
286point_conversion_form_t EC_KEY_get_conv_form(const EC_KEY *key) {
287 return key->conv_form;
288}
289
290void EC_KEY_set_conv_form(EC_KEY *key, point_conversion_form_t cform) {
291 key->conv_form = cform;
292}
293
Adam Langleyd9e397b2015-01-22 14:27:53 -0800294int EC_KEY_check_key(const EC_KEY *eckey) {
295 int ok = 0;
296 BN_CTX *ctx = NULL;
Adam Langleyd9e397b2015-01-22 14:27:53 -0800297 EC_POINT *point = NULL;
298
299 if (!eckey || !eckey->group || !eckey->pub_key) {
Kenny Rootb8494592015-09-25 02:29:14 +0000300 OPENSSL_PUT_ERROR(EC, ERR_R_PASSED_NULL_PARAMETER);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800301 return 0;
302 }
303
304 if (EC_POINT_is_at_infinity(eckey->group, eckey->pub_key)) {
Kenny Rootb8494592015-09-25 02:29:14 +0000305 OPENSSL_PUT_ERROR(EC, EC_R_POINT_AT_INFINITY);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800306 goto err;
307 }
308
309 ctx = BN_CTX_new();
Adam Langleyd9e397b2015-01-22 14:27:53 -0800310
Adam Langley4139edb2016-01-13 15:00:54 -0800311 if (ctx == NULL) {
Adam Langleyd9e397b2015-01-22 14:27:53 -0800312 goto err;
313 }
314
Robert Sloan8f860b12017-08-28 07:37:06 -0700315 // testing whether the pub_key is on the elliptic curve
Adam Langleyd9e397b2015-01-22 14:27:53 -0800316 if (!EC_POINT_is_on_curve(eckey->group, eckey->pub_key, ctx)) {
Kenny Rootb8494592015-09-25 02:29:14 +0000317 OPENSSL_PUT_ERROR(EC, EC_R_POINT_IS_NOT_ON_CURVE);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800318 goto err;
319 }
Robert Sloan8f860b12017-08-28 07:37:06 -0700320 // in case the priv_key is present :
321 // check if generator * priv_key == pub_key
Robert Sloanab8b8882018-03-26 11:39:51 -0700322 if (eckey->priv_key != NULL) {
Adam Langley4139edb2016-01-13 15:00:54 -0800323 point = EC_POINT_new(eckey->group);
324 if (point == NULL ||
Robert Sloanab8b8882018-03-26 11:39:51 -0700325 !ec_point_mul_scalar(eckey->group, point, &eckey->priv_key->scalar,
326 NULL, NULL, ctx)) {
Kenny Rootb8494592015-09-25 02:29:14 +0000327 OPENSSL_PUT_ERROR(EC, ERR_R_EC_LIB);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800328 goto err;
329 }
330 if (EC_POINT_cmp(eckey->group, point, eckey->pub_key, ctx) != 0) {
Kenny Rootb8494592015-09-25 02:29:14 +0000331 OPENSSL_PUT_ERROR(EC, EC_R_INVALID_PRIVATE_KEY);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800332 goto err;
333 }
334 }
335 ok = 1;
336
337err:
Adam Langleye9ada862015-05-11 17:20:37 -0700338 BN_CTX_free(ctx);
339 EC_POINT_free(point);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800340 return ok;
341}
342
Robert Sloan572a4e22017-04-17 10:52:19 -0700343int EC_KEY_check_fips(const EC_KEY *key) {
344 if (EC_KEY_is_opaque(key)) {
Robert Sloan8f860b12017-08-28 07:37:06 -0700345 // Opaque keys can't be checked.
Robert Sloan572a4e22017-04-17 10:52:19 -0700346 OPENSSL_PUT_ERROR(EC, EC_R_PUBLIC_KEY_VALIDATION_FAILED);
347 return 0;
348 }
349
350 if (!EC_KEY_check_key(key)) {
351 return 0;
352 }
353
Robert Sloan8ff03552017-06-14 12:40:58 -0700354 if (key->priv_key) {
355 uint8_t data[16] = {0};
356 ECDSA_SIG *sig = ECDSA_do_sign(data, sizeof(data), key);
357#if defined(BORINGSSL_FIPS_BREAK_ECDSA_PWCT)
358 data[0] = ~data[0];
359#endif
360 int ok = sig != NULL &&
361 ECDSA_do_verify(data, sizeof(data), sig, key);
362 ECDSA_SIG_free(sig);
363 if (!ok) {
364 OPENSSL_PUT_ERROR(EC, EC_R_PUBLIC_KEY_VALIDATION_FAILED);
365 return 0;
366 }
Robert Sloan572a4e22017-04-17 10:52:19 -0700367 }
368
Robert Sloan8ff03552017-06-14 12:40:58 -0700369 return 1;
Robert Sloan572a4e22017-04-17 10:52:19 -0700370}
371
Adam Langleyd9e397b2015-01-22 14:27:53 -0800372int EC_KEY_set_public_key_affine_coordinates(EC_KEY *key, BIGNUM *x,
373 BIGNUM *y) {
Adam Langleyd9e397b2015-01-22 14:27:53 -0800374 EC_POINT *point = NULL;
375 int ok = 0;
376
377 if (!key || !key->group || !x || !y) {
Kenny Rootb8494592015-09-25 02:29:14 +0000378 OPENSSL_PUT_ERROR(EC, ERR_R_PASSED_NULL_PARAMETER);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800379 return 0;
380 }
David Benjamin4969cc92016-04-22 15:02:23 -0400381
Adam Langleyd9e397b2015-01-22 14:27:53 -0800382 point = EC_POINT_new(key->group);
Robert Sloan0db7f542018-01-16 15:48:33 -0800383 if (point == NULL ||
384 !EC_POINT_set_affine_coordinates_GFp(key->group, point, x, y, NULL) ||
385 !EC_KEY_set_public_key(key, point) ||
386 !EC_KEY_check_key(key)) {
Adam Langleyd9e397b2015-01-22 14:27:53 -0800387 goto err;
388 }
389
390 ok = 1;
391
392err:
Adam Langleye9ada862015-05-11 17:20:37 -0700393 EC_POINT_free(point);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800394 return ok;
395}
396
Robert Sloanab8b8882018-03-26 11:39:51 -0700397int EC_KEY_generate_key(EC_KEY *key) {
398 if (key == NULL || key->group == NULL) {
Kenny Rootb8494592015-09-25 02:29:14 +0000399 OPENSSL_PUT_ERROR(EC, ERR_R_PASSED_NULL_PARAMETER);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800400 return 0;
401 }
402
Robert Sloanab8b8882018-03-26 11:39:51 -0700403 // Check that the group order is FIPS compliant (FIPS 186-4 B.4.2).
404 if (BN_num_bits(EC_GROUP_get0_order(key->group)) < 160) {
Robert Sloan572a4e22017-04-17 10:52:19 -0700405 OPENSSL_PUT_ERROR(EC, EC_R_INVALID_GROUP_ORDER);
Robert Sloanab8b8882018-03-26 11:39:51 -0700406 return 0;
Robert Sloan572a4e22017-04-17 10:52:19 -0700407 }
408
Robert Sloanab8b8882018-03-26 11:39:51 -0700409 static const uint8_t kDefaultAdditionalData[32] = {0};
410 EC_WRAPPED_SCALAR *priv_key = ec_wrapped_scalar_new(key->group);
411 EC_POINT *pub_key = EC_POINT_new(key->group);
412 if (priv_key == NULL || pub_key == NULL ||
413 // Generate the private key by testing candidates (FIPS 186-4 B.4.2).
414 !ec_random_nonzero_scalar(key->group, &priv_key->scalar,
415 kDefaultAdditionalData) ||
416 !ec_point_mul_scalar(key->group, pub_key, &priv_key->scalar, NULL, NULL,
417 NULL)) {
Adam Langleyd9e397b2015-01-22 14:27:53 -0800418 EC_POINT_free(pub_key);
Robert Sloanab8b8882018-03-26 11:39:51 -0700419 ec_wrapped_scalar_free(priv_key);
420 return 0;
Adam Langleye9ada862015-05-11 17:20:37 -0700421 }
Robert Sloanab8b8882018-03-26 11:39:51 -0700422
423 ec_wrapped_scalar_free(key->priv_key);
424 key->priv_key = priv_key;
425 EC_POINT_free(key->pub_key);
426 key->pub_key = pub_key;
427 return 1;
Adam Langleyd9e397b2015-01-22 14:27:53 -0800428}
429
Robert Sloan8ff03552017-06-14 12:40:58 -0700430int EC_KEY_generate_key_fips(EC_KEY *eckey) {
431 return EC_KEY_generate_key(eckey) && EC_KEY_check_fips(eckey);
432}
433
Adam Langley4139edb2016-01-13 15:00:54 -0800434int EC_KEY_get_ex_new_index(long argl, void *argp, CRYPTO_EX_unused *unused,
Robert Sloan8ff03552017-06-14 12:40:58 -0700435 CRYPTO_EX_dup *dup_unused,
Adam Langleyd9e397b2015-01-22 14:27:53 -0800436 CRYPTO_EX_free *free_func) {
Adam Langleye9ada862015-05-11 17:20:37 -0700437 int index;
Robert Sloan8ff03552017-06-14 12:40:58 -0700438 if (!CRYPTO_get_ex_new_index(g_ec_ex_data_class_bss_get(), &index, argl, argp,
Adam Langley4139edb2016-01-13 15:00:54 -0800439 free_func)) {
Adam Langleye9ada862015-05-11 17:20:37 -0700440 return -1;
441 }
442 return index;
Adam Langleyd9e397b2015-01-22 14:27:53 -0800443}
444
445int EC_KEY_set_ex_data(EC_KEY *d, int idx, void *arg) {
446 return CRYPTO_set_ex_data(&d->ex_data, idx, arg);
447}
448
449void *EC_KEY_get_ex_data(const EC_KEY *d, int idx) {
450 return CRYPTO_get_ex_data(&d->ex_data, idx);
451}
Adam Langleyf7e890d2015-03-31 18:58:05 -0700452
453void EC_KEY_set_asn1_flag(EC_KEY *key, int flag) {}