blob: 1b941b48449bde46d2c210208090803f86994963 [file] [log] [blame]
Bodo Möller14a7cfb2002-08-07 10:49:54 +00001/* crypto/ec/ec_key.c */
2/*
3 * Written by Nils Larsch for the OpenSSL project.
4 */
5/* ====================================================================
Nils Larsch9dd84052005-05-16 10:11:04 +00006 * Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved.
Bodo Möller14a7cfb2002-08-07 10:49:54 +00007 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 *
12 * 1. Redistributions of source code must retain the above copyright
Matt Caswell0f113f32015-01-22 03:40:55 +000013 * notice, this list of conditions and the following disclaimer.
Bodo Möller14a7cfb2002-08-07 10:49:54 +000014 *
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
17 * the documentation and/or other materials provided with the
18 * distribution.
19 *
20 * 3. All advertising materials mentioning features or use of this
21 * software must display the following acknowledgment:
22 * "This product includes software developed by the OpenSSL Project
23 * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
24 *
25 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26 * endorse or promote products derived from this software without
27 * prior written permission. For written permission, please contact
28 * openssl-core@openssl.org.
29 *
30 * 5. Products derived from this software may not be called "OpenSSL"
31 * nor may "OpenSSL" appear in their names without prior written
32 * permission of the OpenSSL Project.
33 *
34 * 6. Redistributions of any form whatsoever must retain the following
35 * acknowledgment:
36 * "This product includes software developed by the OpenSSL Project
37 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
38 *
39 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
43 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50 * OF THE POSSIBILITY OF SUCH DAMAGE.
51 * ====================================================================
52 *
53 * This product includes cryptographic software written by Eric Young
54 * (eay@cryptsoft.com). This product includes software written by Tim
55 * Hudson (tjh@cryptsoft.com).
56 *
57 */
Bodo Möllere172d602002-08-09 08:43:04 +000058/* ====================================================================
59 * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
Matt Caswell0f113f32015-01-22 03:40:55 +000060 * Portions originally developed by SUN MICROSYSTEMS, INC., and
Bodo Möllere172d602002-08-09 08:43:04 +000061 * contributed to the OpenSSL project.
62 */
Bodo Möller14a7cfb2002-08-07 10:49:54 +000063
David Woodhouse984d6c62015-09-11 14:56:32 -040064#include <internal/cryptlib.h>
Richard Levitte54548292002-08-10 01:36:14 +000065#include <string.h>
Bodo Möller14a7cfb2002-08-07 10:49:54 +000066#include "ec_lcl.h"
67#include <openssl/err.h>
Dr. Stephen Henson51966412015-10-23 18:46:58 +010068#ifndef OPENSSSL_NO_ENGINE
69# include <openssl/engine.h>
70#endif
Bodo Möller14a7cfb2002-08-07 10:49:54 +000071
72EC_KEY *EC_KEY_new(void)
Matt Caswell0f113f32015-01-22 03:40:55 +000073{
Dr. Stephen Henson28572b52015-10-19 14:38:43 +010074 return EC_KEY_new_method(NULL);
Matt Caswell0f113f32015-01-22 03:40:55 +000075}
Bodo Möller14a7cfb2002-08-07 10:49:54 +000076
Nils Larsch9dd84052005-05-16 10:11:04 +000077EC_KEY *EC_KEY_new_by_curve_name(int nid)
Matt Caswell0f113f32015-01-22 03:40:55 +000078{
79 EC_KEY *ret = EC_KEY_new();
80 if (ret == NULL)
81 return NULL;
82 ret->group = EC_GROUP_new_by_curve_name(nid);
83 if (ret->group == NULL) {
84 EC_KEY_free(ret);
85 return NULL;
86 }
87 return ret;
88}
Bodo Möller14a7cfb2002-08-07 10:49:54 +000089
90void EC_KEY_free(EC_KEY *r)
Matt Caswell0f113f32015-01-22 03:40:55 +000091{
92 int i;
Bodo Möller14a7cfb2002-08-07 10:49:54 +000093
Matt Caswell0f113f32015-01-22 03:40:55 +000094 if (r == NULL)
95 return;
Bodo Möller14a7cfb2002-08-07 10:49:54 +000096
Matt Caswell0f113f32015-01-22 03:40:55 +000097 i = CRYPTO_add(&r->references, -1, CRYPTO_LOCK_EC);
Bodo Möller14a7cfb2002-08-07 10:49:54 +000098#ifdef REF_PRINT
Matt Caswell0f113f32015-01-22 03:40:55 +000099 REF_PRINT("EC_KEY", r);
Bodo Möller14a7cfb2002-08-07 10:49:54 +0000100#endif
Matt Caswell0f113f32015-01-22 03:40:55 +0000101 if (i > 0)
102 return;
Bodo Möller14a7cfb2002-08-07 10:49:54 +0000103#ifdef REF_CHECK
Matt Caswell0f113f32015-01-22 03:40:55 +0000104 if (i < 0) {
105 fprintf(stderr, "EC_KEY_free, bad reference count\n");
106 abort();
107 }
Bodo Möller14a7cfb2002-08-07 10:49:54 +0000108#endif
109
Dr. Stephen Henson0d6ff6d2015-10-23 19:10:24 +0100110 if (r->meth->finish)
111 r->meth->finish(r);
112
Dr. Stephen Henson51966412015-10-23 18:46:58 +0100113#ifndef OPENSSL_NO_ENGINE
114 if (r->engine)
115 ENGINE_finish(r->engine);
116#endif
117
Rich Salz8fdc3732015-03-25 18:35:24 -0400118 EC_GROUP_free(r->group);
119 EC_POINT_free(r->pub_key);
Rich Salz23a1d5e2015-04-30 21:37:06 -0400120 BN_clear_free(r->priv_key);
Bodo Möller14a7cfb2002-08-07 10:49:54 +0000121
Matt Caswell0f113f32015-01-22 03:40:55 +0000122 EC_EX_DATA_free_all_data(&r->method_data);
Bodo Möller14a7cfb2002-08-07 10:49:54 +0000123
Rich Salz4b45c6e2015-04-30 17:57:32 -0400124 OPENSSL_clear_free((void *)r, sizeof(EC_KEY));
Matt Caswell0f113f32015-01-22 03:40:55 +0000125}
Bodo Möller14a7cfb2002-08-07 10:49:54 +0000126
127EC_KEY *EC_KEY_copy(EC_KEY *dest, const EC_KEY *src)
Matt Caswell0f113f32015-01-22 03:40:55 +0000128{
129 EC_EXTRA_DATA *d;
Nils Larsch9dd84052005-05-16 10:11:04 +0000130
Matt Caswell0f113f32015-01-22 03:40:55 +0000131 if (dest == NULL || src == NULL) {
132 ECerr(EC_F_EC_KEY_COPY, ERR_R_PASSED_NULL_PARAMETER);
133 return NULL;
134 }
Dr. Stephen Hensonea0392b2015-10-23 19:19:57 +0100135 if (src->meth != dest->meth) {
136 if (dest->meth->finish)
137 dest->meth->finish(dest);
138#ifndef OPENSSL_NO_ENGINE
139 if (dest->engine && ENGINE_finish(dest->engine) == 0)
140 return 0;
141 dest->engine = NULL;
142#endif
143 }
Matt Caswell0f113f32015-01-22 03:40:55 +0000144 /* copy the parameters */
145 if (src->group) {
146 const EC_METHOD *meth = EC_GROUP_method_of(src->group);
147 /* clear the old group */
Rich Salz8fdc3732015-03-25 18:35:24 -0400148 EC_GROUP_free(dest->group);
Matt Caswell0f113f32015-01-22 03:40:55 +0000149 dest->group = EC_GROUP_new(meth);
150 if (dest->group == NULL)
151 return NULL;
152 if (!EC_GROUP_copy(dest->group, src->group))
153 return NULL;
154 }
155 /* copy the public key */
156 if (src->pub_key && src->group) {
Rich Salz8fdc3732015-03-25 18:35:24 -0400157 EC_POINT_free(dest->pub_key);
Matt Caswell0f113f32015-01-22 03:40:55 +0000158 dest->pub_key = EC_POINT_new(src->group);
159 if (dest->pub_key == NULL)
160 return NULL;
161 if (!EC_POINT_copy(dest->pub_key, src->pub_key))
162 return NULL;
163 }
164 /* copy the private key */
165 if (src->priv_key) {
166 if (dest->priv_key == NULL) {
167 dest->priv_key = BN_new();
168 if (dest->priv_key == NULL)
169 return NULL;
170 }
171 if (!BN_copy(dest->priv_key, src->priv_key))
172 return NULL;
173 }
174 /* copy method/extra data */
175 EC_EX_DATA_free_all_data(&dest->method_data);
Nils Larsch9dd84052005-05-16 10:11:04 +0000176
Matt Caswell0f113f32015-01-22 03:40:55 +0000177 for (d = src->method_data; d != NULL; d = d->next) {
178 void *t = d->dup_func(d->data);
Nils Larsch9dd84052005-05-16 10:11:04 +0000179
Matt Caswell0f113f32015-01-22 03:40:55 +0000180 if (t == NULL)
181 return 0;
182 if (!EC_EX_DATA_set_data
183 (&dest->method_data, t, d->dup_func, d->free_func,
184 d->clear_free_func))
185 return 0;
186 }
Bodo Möller14a7cfb2002-08-07 10:49:54 +0000187
Matt Caswell0f113f32015-01-22 03:40:55 +0000188 /* copy the rest */
189 dest->enc_flag = src->enc_flag;
190 dest->conv_form = src->conv_form;
191 dest->version = src->version;
192 dest->flags = src->flags;
193
Dr. Stephen Hensonea0392b2015-10-23 19:19:57 +0100194 if (src->meth != dest->meth) {
195#ifndef OPENSSL_NO_ENGINE
196 if (src->engine && ENGINE_init(src->engine) == 0)
197 return 0;
198 dest->engine = src->engine;
199#endif
200 dest->meth = src->meth;
201 }
202
203 if (src->meth->copy && src->meth->copy(dest, src) == 0)
204 return 0;
205
Matt Caswell0f113f32015-01-22 03:40:55 +0000206 return dest;
207}
Bodo Möller14a7cfb2002-08-07 10:49:54 +0000208
Nils Larsch87120092005-05-17 12:23:16 +0000209EC_KEY *EC_KEY_dup(const EC_KEY *ec_key)
Matt Caswell0f113f32015-01-22 03:40:55 +0000210{
Dr. Stephen Hensonea0392b2015-10-23 19:19:57 +0100211 EC_KEY *ret = EC_KEY_new_method(ec_key->engine);
Matt Caswell0f113f32015-01-22 03:40:55 +0000212 if (ret == NULL)
213 return NULL;
214 if (EC_KEY_copy(ret, ec_key) == NULL) {
215 EC_KEY_free(ret);
216 return NULL;
217 }
218 return ret;
219}
Bodo Möller14a7cfb2002-08-07 10:49:54 +0000220
Bodo Möllere172d602002-08-09 08:43:04 +0000221int EC_KEY_up_ref(EC_KEY *r)
Matt Caswell0f113f32015-01-22 03:40:55 +0000222{
223 int i = CRYPTO_add(&r->references, 1, CRYPTO_LOCK_EC);
Bodo Möllere172d602002-08-09 08:43:04 +0000224#ifdef REF_PRINT
Matt Caswell0f113f32015-01-22 03:40:55 +0000225 REF_PRINT("EC_KEY", r);
Bodo Möllere172d602002-08-09 08:43:04 +0000226#endif
227#ifdef REF_CHECK
Matt Caswell0f113f32015-01-22 03:40:55 +0000228 if (i < 2) {
229 fprintf(stderr, "EC_KEY_up, bad reference count\n");
230 abort();
231 }
Bodo Möllere172d602002-08-09 08:43:04 +0000232#endif
Matt Caswell0f113f32015-01-22 03:40:55 +0000233 return ((i > 1) ? 1 : 0);
234}
Bodo Möllere172d602002-08-09 08:43:04 +0000235
Bodo Möller14a7cfb2002-08-07 10:49:54 +0000236int EC_KEY_generate_key(EC_KEY *eckey)
Matt Caswell0f113f32015-01-22 03:40:55 +0000237{
Matt Caswell0f113f32015-01-22 03:40:55 +0000238 if (!eckey || !eckey->group) {
239 ECerr(EC_F_EC_KEY_GENERATE_KEY, ERR_R_PASSED_NULL_PARAMETER);
240 return 0;
241 }
Dr. Stephen Henson5a6a1022015-10-22 14:53:23 +0100242 if (eckey->meth->keygen)
243 return eckey->meth->keygen(eckey);
244 ECerr(EC_F_EC_KEY_GENERATE_KEY, EC_R_OPERATION_NOT_SUPPORTED);
245 return 0;
246}
247
248int ossl_ec_key_gen(EC_KEY *eckey)
249{
250 int ok = 0;
251 BN_CTX *ctx = NULL;
252 BIGNUM *priv_key = NULL, *order = NULL;
253 EC_POINT *pub_key = NULL;
Bodo Möller14a7cfb2002-08-07 10:49:54 +0000254
Matt Caswell0f113f32015-01-22 03:40:55 +0000255 if ((order = BN_new()) == NULL)
256 goto err;
257 if ((ctx = BN_CTX_new()) == NULL)
258 goto err;
Bodo Möller14a7cfb2002-08-07 10:49:54 +0000259
Matt Caswell0f113f32015-01-22 03:40:55 +0000260 if (eckey->priv_key == NULL) {
261 priv_key = BN_new();
262 if (priv_key == NULL)
263 goto err;
264 } else
265 priv_key = eckey->priv_key;
Bodo Möller14a7cfb2002-08-07 10:49:54 +0000266
Matt Caswell0f113f32015-01-22 03:40:55 +0000267 if (!EC_GROUP_get_order(eckey->group, order, ctx))
268 goto err;
Bodo Möller14a7cfb2002-08-07 10:49:54 +0000269
Matt Caswell0f113f32015-01-22 03:40:55 +0000270 do
271 if (!BN_rand_range(priv_key, order))
272 goto err;
273 while (BN_is_zero(priv_key)) ;
Bodo Möller14a7cfb2002-08-07 10:49:54 +0000274
Matt Caswell0f113f32015-01-22 03:40:55 +0000275 if (eckey->pub_key == NULL) {
276 pub_key = EC_POINT_new(eckey->group);
277 if (pub_key == NULL)
278 goto err;
279 } else
280 pub_key = eckey->pub_key;
Bodo Möller14a7cfb2002-08-07 10:49:54 +0000281
Matt Caswell0f113f32015-01-22 03:40:55 +0000282 if (!EC_POINT_mul(eckey->group, pub_key, priv_key, NULL, NULL, ctx))
283 goto err;
Bodo Möller14a7cfb2002-08-07 10:49:54 +0000284
Matt Caswell0f113f32015-01-22 03:40:55 +0000285 eckey->priv_key = priv_key;
286 eckey->pub_key = pub_key;
Bodo Möller14a7cfb2002-08-07 10:49:54 +0000287
Matt Caswell0f113f32015-01-22 03:40:55 +0000288 ok = 1;
Bodo Möller14a7cfb2002-08-07 10:49:54 +0000289
Matt Caswell0f113f32015-01-22 03:40:55 +0000290 err:
Rich Salz23a1d5e2015-04-30 21:37:06 -0400291 BN_free(order);
Rich Salz8fdc3732015-03-25 18:35:24 -0400292 if (eckey->pub_key == NULL)
Matt Caswell0f113f32015-01-22 03:40:55 +0000293 EC_POINT_free(pub_key);
Rich Salz23a1d5e2015-04-30 21:37:06 -0400294 if (eckey->priv_key != priv_key)
Matt Caswell0f113f32015-01-22 03:40:55 +0000295 BN_free(priv_key);
Rich Salz23a1d5e2015-04-30 21:37:06 -0400296 BN_CTX_free(ctx);
Matt Caswell0f113f32015-01-22 03:40:55 +0000297 return (ok);
298}
Bodo Möller14a7cfb2002-08-07 10:49:54 +0000299
300int EC_KEY_check_key(const EC_KEY *eckey)
Matt Caswell0f113f32015-01-22 03:40:55 +0000301{
302 int ok = 0;
303 BN_CTX *ctx = NULL;
304 const BIGNUM *order = NULL;
305 EC_POINT *point = NULL;
Bodo Möller14a7cfb2002-08-07 10:49:54 +0000306
Matt Caswell0f113f32015-01-22 03:40:55 +0000307 if (!eckey || !eckey->group || !eckey->pub_key) {
308 ECerr(EC_F_EC_KEY_CHECK_KEY, ERR_R_PASSED_NULL_PARAMETER);
309 return 0;
310 }
Dr. Stephen Hensona428ac42011-01-24 15:04:34 +0000311
Matt Caswell0f113f32015-01-22 03:40:55 +0000312 if (EC_POINT_is_at_infinity(eckey->group, eckey->pub_key)) {
313 ECerr(EC_F_EC_KEY_CHECK_KEY, EC_R_POINT_AT_INFINITY);
314 goto err;
315 }
Dr. Stephen Hensonfef1c402011-01-24 16:07:40 +0000316
Matt Caswell0f113f32015-01-22 03:40:55 +0000317 if ((ctx = BN_CTX_new()) == NULL)
318 goto err;
319 if ((point = EC_POINT_new(eckey->group)) == NULL)
320 goto err;
Bodo Möller14a7cfb2002-08-07 10:49:54 +0000321
Matt Caswell0f113f32015-01-22 03:40:55 +0000322 /* testing whether the pub_key is on the elliptic curve */
Matt Caswell68886be2015-06-04 14:22:00 +0100323 if (EC_POINT_is_on_curve(eckey->group, eckey->pub_key, ctx) <= 0) {
Matt Caswell0f113f32015-01-22 03:40:55 +0000324 ECerr(EC_F_EC_KEY_CHECK_KEY, EC_R_POINT_IS_NOT_ON_CURVE);
325 goto err;
326 }
327 /* testing whether pub_key * order is the point at infinity */
328 order = eckey->group->order;
329 if (BN_is_zero(order)) {
330 ECerr(EC_F_EC_KEY_CHECK_KEY, EC_R_INVALID_GROUP_ORDER);
331 goto err;
332 }
333 if (!EC_POINT_mul(eckey->group, point, NULL, eckey->pub_key, order, ctx)) {
334 ECerr(EC_F_EC_KEY_CHECK_KEY, ERR_R_EC_LIB);
335 goto err;
336 }
337 if (!EC_POINT_is_at_infinity(eckey->group, point)) {
338 ECerr(EC_F_EC_KEY_CHECK_KEY, EC_R_WRONG_ORDER);
339 goto err;
340 }
341 /*
342 * in case the priv_key is present : check if generator * priv_key ==
343 * pub_key
344 */
345 if (eckey->priv_key) {
346 if (BN_cmp(eckey->priv_key, order) >= 0) {
347 ECerr(EC_F_EC_KEY_CHECK_KEY, EC_R_WRONG_ORDER);
348 goto err;
349 }
350 if (!EC_POINT_mul(eckey->group, point, eckey->priv_key,
351 NULL, NULL, ctx)) {
352 ECerr(EC_F_EC_KEY_CHECK_KEY, ERR_R_EC_LIB);
353 goto err;
354 }
355 if (EC_POINT_cmp(eckey->group, point, eckey->pub_key, ctx) != 0) {
356 ECerr(EC_F_EC_KEY_CHECK_KEY, EC_R_INVALID_PRIVATE_KEY);
357 goto err;
358 }
359 }
360 ok = 1;
361 err:
Rich Salz23a1d5e2015-04-30 21:37:06 -0400362 BN_CTX_free(ctx);
Rich Salz8fdc3732015-03-25 18:35:24 -0400363 EC_POINT_free(point);
Matt Caswell0f113f32015-01-22 03:40:55 +0000364 return (ok);
365}
Nils Larsch9dd84052005-05-16 10:11:04 +0000366
Matt Caswell0f113f32015-01-22 03:40:55 +0000367int EC_KEY_set_public_key_affine_coordinates(EC_KEY *key, BIGNUM *x,
368 BIGNUM *y)
369{
370 BN_CTX *ctx = NULL;
371 BIGNUM *tx, *ty;
372 EC_POINT *point = NULL;
Matt Caswell8d11b7c2015-07-09 16:37:54 +0100373 int ok = 0;
374#ifndef OPENSSL_NO_EC2M
375 int tmp_nid, is_char_two = 0;
376#endif
Dr. Stephen Hensonfef1c402011-01-24 16:07:40 +0000377
Matt Caswell0f113f32015-01-22 03:40:55 +0000378 if (!key || !key->group || !x || !y) {
379 ECerr(EC_F_EC_KEY_SET_PUBLIC_KEY_AFFINE_COORDINATES,
380 ERR_R_PASSED_NULL_PARAMETER);
381 return 0;
382 }
383 ctx = BN_CTX_new();
Matt Caswell90945fa2015-10-30 11:12:26 +0000384 if (ctx == NULL)
Matt Caswell0f113f32015-01-22 03:40:55 +0000385 goto err;
Dr. Stephen Hensonfef1c402011-01-24 16:07:40 +0000386
Matt Caswell0f113f32015-01-22 03:40:55 +0000387 point = EC_POINT_new(key->group);
Dr. Stephen Hensonfef1c402011-01-24 16:07:40 +0000388
Matt Caswell90945fa2015-10-30 11:12:26 +0000389 if (point == NULL)
Matt Caswell0f113f32015-01-22 03:40:55 +0000390 goto err;
Dr. Stephen Hensonfef1c402011-01-24 16:07:40 +0000391
Matt Caswell8d11b7c2015-07-09 16:37:54 +0100392 tx = BN_CTX_get(ctx);
393 ty = BN_CTX_get(ctx);
394
395#ifndef OPENSSL_NO_EC2M
Matt Caswell0f113f32015-01-22 03:40:55 +0000396 tmp_nid = EC_METHOD_get_field_type(EC_GROUP_method_of(key->group));
Dr. Stephen Hensonfef1c402011-01-24 16:07:40 +0000397
Matt Caswell0f113f32015-01-22 03:40:55 +0000398 if (tmp_nid == NID_X9_62_characteristic_two_field)
399 is_char_two = 1;
Dr. Stephen Hensonfef1c402011-01-24 16:07:40 +0000400
Matt Caswell0f113f32015-01-22 03:40:55 +0000401 if (is_char_two) {
402 if (!EC_POINT_set_affine_coordinates_GF2m(key->group, point,
403 x, y, ctx))
404 goto err;
405 if (!EC_POINT_get_affine_coordinates_GF2m(key->group, point,
406 tx, ty, ctx))
407 goto err;
408 } else
Dr. Stephen Hensonb3310162011-02-12 17:23:32 +0000409#endif
Matt Caswell0f113f32015-01-22 03:40:55 +0000410 {
411 if (!EC_POINT_set_affine_coordinates_GFp(key->group, point,
412 x, y, ctx))
413 goto err;
414 if (!EC_POINT_get_affine_coordinates_GFp(key->group, point,
415 tx, ty, ctx))
416 goto err;
417 }
418 /*
419 * Check if retrieved coordinates match originals and are less than field
420 * order: if not values are out of range.
421 */
422 if (BN_cmp(x, tx) || BN_cmp(y, ty)
423 || (BN_cmp(x, key->group->field) >= 0)
424 || (BN_cmp(y, key->group->field) >= 0)) {
425 ECerr(EC_F_EC_KEY_SET_PUBLIC_KEY_AFFINE_COORDINATES,
426 EC_R_COORDINATES_OUT_OF_RANGE);
427 goto err;
428 }
Dr. Stephen Hensonfef1c402011-01-24 16:07:40 +0000429
Matt Caswell0f113f32015-01-22 03:40:55 +0000430 if (!EC_KEY_set_public_key(key, point))
431 goto err;
Dr. Stephen Hensonfef1c402011-01-24 16:07:40 +0000432
Matt Caswell0f113f32015-01-22 03:40:55 +0000433 if (EC_KEY_check_key(key) == 0)
434 goto err;
Dr. Stephen Hensonfef1c402011-01-24 16:07:40 +0000435
Matt Caswell0f113f32015-01-22 03:40:55 +0000436 ok = 1;
Dr. Stephen Hensonfef1c402011-01-24 16:07:40 +0000437
Matt Caswell0f113f32015-01-22 03:40:55 +0000438 err:
Rich Salz23a1d5e2015-04-30 21:37:06 -0400439 BN_CTX_free(ctx);
Rich Salz8fdc3732015-03-25 18:35:24 -0400440 EC_POINT_free(point);
Matt Caswell0f113f32015-01-22 03:40:55 +0000441 return ok;
Dr. Stephen Hensonfef1c402011-01-24 16:07:40 +0000442
Matt Caswell0f113f32015-01-22 03:40:55 +0000443}
Dr. Stephen Hensonfef1c402011-01-24 16:07:40 +0000444
Nils Larsch9dd84052005-05-16 10:11:04 +0000445const EC_GROUP *EC_KEY_get0_group(const EC_KEY *key)
Matt Caswell0f113f32015-01-22 03:40:55 +0000446{
447 return key->group;
448}
Nils Larsch9dd84052005-05-16 10:11:04 +0000449
450int EC_KEY_set_group(EC_KEY *key, const EC_GROUP *group)
Matt Caswell0f113f32015-01-22 03:40:55 +0000451{
Rich Salz8fdc3732015-03-25 18:35:24 -0400452 EC_GROUP_free(key->group);
Matt Caswell0f113f32015-01-22 03:40:55 +0000453 key->group = EC_GROUP_dup(group);
454 return (key->group == NULL) ? 0 : 1;
455}
Nils Larsch9dd84052005-05-16 10:11:04 +0000456
457const BIGNUM *EC_KEY_get0_private_key(const EC_KEY *key)
Matt Caswell0f113f32015-01-22 03:40:55 +0000458{
459 return key->priv_key;
460}
Nils Larsch9dd84052005-05-16 10:11:04 +0000461
462int EC_KEY_set_private_key(EC_KEY *key, const BIGNUM *priv_key)
Matt Caswell0f113f32015-01-22 03:40:55 +0000463{
Rich Salz23a1d5e2015-04-30 21:37:06 -0400464 BN_clear_free(key->priv_key);
Matt Caswell0f113f32015-01-22 03:40:55 +0000465 key->priv_key = BN_dup(priv_key);
466 return (key->priv_key == NULL) ? 0 : 1;
467}
Nils Larsch9dd84052005-05-16 10:11:04 +0000468
469const EC_POINT *EC_KEY_get0_public_key(const EC_KEY *key)
Matt Caswell0f113f32015-01-22 03:40:55 +0000470{
471 return key->pub_key;
472}
Nils Larsch9dd84052005-05-16 10:11:04 +0000473
474int EC_KEY_set_public_key(EC_KEY *key, const EC_POINT *pub_key)
Matt Caswell0f113f32015-01-22 03:40:55 +0000475{
Rich Salz8fdc3732015-03-25 18:35:24 -0400476 EC_POINT_free(key->pub_key);
Matt Caswell0f113f32015-01-22 03:40:55 +0000477 key->pub_key = EC_POINT_dup(pub_key, key->group);
478 return (key->pub_key == NULL) ? 0 : 1;
479}
Nils Larsch9dd84052005-05-16 10:11:04 +0000480
481unsigned int EC_KEY_get_enc_flags(const EC_KEY *key)
Matt Caswell0f113f32015-01-22 03:40:55 +0000482{
483 return key->enc_flag;
484}
Nils Larsch9dd84052005-05-16 10:11:04 +0000485
486void EC_KEY_set_enc_flags(EC_KEY *key, unsigned int flags)
Matt Caswell0f113f32015-01-22 03:40:55 +0000487{
488 key->enc_flag = flags;
489}
Nils Larsch9dd84052005-05-16 10:11:04 +0000490
491point_conversion_form_t EC_KEY_get_conv_form(const EC_KEY *key)
Matt Caswell0f113f32015-01-22 03:40:55 +0000492{
493 return key->conv_form;
494}
Nils Larsch9dd84052005-05-16 10:11:04 +0000495
496void EC_KEY_set_conv_form(EC_KEY *key, point_conversion_form_t cform)
Matt Caswell0f113f32015-01-22 03:40:55 +0000497{
498 key->conv_form = cform;
499 if (key->group != NULL)
500 EC_GROUP_set_point_conversion_form(key->group, cform);
501}
Nils Larsch9dd84052005-05-16 10:11:04 +0000502
503void *EC_KEY_get_key_method_data(EC_KEY *key,
Matt Caswell0f113f32015-01-22 03:40:55 +0000504 void *(*dup_func) (void *),
505 void (*free_func) (void *),
506 void (*clear_free_func) (void *))
507{
508 void *ret;
Bodo Möllerf11d0c72012-10-05 20:50:11 +0000509
Matt Caswell0f113f32015-01-22 03:40:55 +0000510 CRYPTO_r_lock(CRYPTO_LOCK_EC);
511 ret =
512 EC_EX_DATA_get_data(key->method_data, dup_func, free_func,
513 clear_free_func);
514 CRYPTO_r_unlock(CRYPTO_LOCK_EC);
Bodo Möllerf11d0c72012-10-05 20:50:11 +0000515
Matt Caswell0f113f32015-01-22 03:40:55 +0000516 return ret;
517}
Nils Larsch9dd84052005-05-16 10:11:04 +0000518
Bodo Möllerf11d0c72012-10-05 20:50:11 +0000519void *EC_KEY_insert_key_method_data(EC_KEY *key, void *data,
Matt Caswell0f113f32015-01-22 03:40:55 +0000520 void *(*dup_func) (void *),
521 void (*free_func) (void *),
522 void (*clear_free_func) (void *))
523{
524 EC_EXTRA_DATA *ex_data;
Bodo Möllerf11d0c72012-10-05 20:50:11 +0000525
Matt Caswell0f113f32015-01-22 03:40:55 +0000526 CRYPTO_w_lock(CRYPTO_LOCK_EC);
527 ex_data =
528 EC_EX_DATA_get_data(key->method_data, dup_func, free_func,
529 clear_free_func);
530 if (ex_data == NULL)
531 EC_EX_DATA_set_data(&key->method_data, data, dup_func, free_func,
532 clear_free_func);
533 CRYPTO_w_unlock(CRYPTO_LOCK_EC);
Bodo Möllerf11d0c72012-10-05 20:50:11 +0000534
Matt Caswell0f113f32015-01-22 03:40:55 +0000535 return ex_data;
536}
Nils Larsch9dd84052005-05-16 10:11:04 +0000537
538void EC_KEY_set_asn1_flag(EC_KEY *key, int flag)
Matt Caswell0f113f32015-01-22 03:40:55 +0000539{
540 if (key->group != NULL)
541 EC_GROUP_set_asn1_flag(key->group, flag);
542}
Nils Larsch9dd84052005-05-16 10:11:04 +0000543
544int EC_KEY_precompute_mult(EC_KEY *key, BN_CTX *ctx)
Matt Caswell0f113f32015-01-22 03:40:55 +0000545{
546 if (key->group == NULL)
547 return 0;
548 return EC_GROUP_precompute_mult(key->group, ctx);
549}
Dr. Stephen Hensoncac4fb52011-04-23 19:55:55 +0000550
551int EC_KEY_get_flags(const EC_KEY *key)
Matt Caswell0f113f32015-01-22 03:40:55 +0000552{
553 return key->flags;
554}
Dr. Stephen Hensoncac4fb52011-04-23 19:55:55 +0000555
556void EC_KEY_set_flags(EC_KEY *key, int flags)
Matt Caswell0f113f32015-01-22 03:40:55 +0000557{
558 key->flags |= flags;
559}
Dr. Stephen Hensoncac4fb52011-04-23 19:55:55 +0000560
561void EC_KEY_clear_flags(EC_KEY *key, int flags)
Matt Caswell0f113f32015-01-22 03:40:55 +0000562{
563 key->flags &= ~flags;
564}