]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/ec/ec_lib.c
remove OPENSSL_FIPSAPI
[thirdparty/openssl.git] / crypto / ec / ec_lib.c
CommitLineData
65e81670 1/* crypto/ec/ec_lib.c */
35b73a1f
BM
2/*
3 * Originally written by Bodo Moeller for the OpenSSL project.
4 */
65e81670 5/* ====================================================================
37c660ff 6 * Copyright (c) 1998-2003 The OpenSSL Project. All rights reserved.
65e81670
BM
7 *
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
13 * notice, this list of conditions and the following disclaimer.
14 *
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 */
7793f30e
BM
58/* ====================================================================
59 * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
60 * Binary polynomial ECC support in OpenSSL originally developed by
61 * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project.
62 */
65e81670 63
73e45b2d 64
84b08eee 65
c4b36ff4
BM
66#include <string.h>
67
0657bf9c 68#include <openssl/err.h>
bb62a8b0 69#include <openssl/opensslv.h>
0657bf9c 70
65e81670 71#include "ec_lcl.h"
0657bf9c 72
bb62a8b0
BM
73static const char EC_version[] = "EC" OPENSSL_VERSION_PTEXT;
74
0657bf9c
BM
75
76/* functions for EC_GROUP objects */
77
78EC_GROUP *EC_GROUP_new(const EC_METHOD *meth)
79 {
80 EC_GROUP *ret;
81
82 if (meth == NULL)
83 {
739a543e 84 ECerr(EC_F_EC_GROUP_NEW, EC_R_SLOT_FULL);
0657bf9c
BM
85 return NULL;
86 }
87 if (meth->group_init == 0)
88 {
89 ECerr(EC_F_EC_GROUP_NEW, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
90 return NULL;
91 }
92
93 ret = OPENSSL_malloc(sizeof *ret);
94 if (ret == NULL)
95 {
96 ECerr(EC_F_EC_GROUP_NEW, ERR_R_MALLOC_FAILURE);
97 return NULL;
98 }
99
100 ret->meth = meth;
df9cc153
BM
101
102 ret->extra_data = NULL;
f54be179 103 ret->mont_data = NULL;
945e15a2 104
b6db386f
BM
105 ret->generator = NULL;
106 BN_init(&ret->order);
107 BN_init(&ret->cofactor);
108
254ef80d
BM
109 ret->curve_name = 0;
110 ret->asn1_flag = 0;
5f3d6f70 111 ret->asn1_form = POINT_CONVERSION_UNCOMPRESSED;
458c2917
BM
112
113 ret->seed = NULL;
114 ret->seed_len = 0;
945e15a2 115
0657bf9c
BM
116 if (!meth->group_init(ret))
117 {
118 OPENSSL_free(ret);
119 return NULL;
120 }
121
122 return ret;
123 }
124
125
0657bf9c
BM
126void EC_GROUP_free(EC_GROUP *group)
127 {
7711de24
BM
128 if (!group) return;
129
0657bf9c
BM
130 if (group->meth->group_finish != 0)
131 group->meth->group_finish(group);
df9cc153 132
9dd84053 133 EC_EX_DATA_free_all_data(&group->extra_data);
df9cc153 134
f54be179
AP
135 if (group->mont_data)
136 BN_MONT_CTX_free(group->mont_data);
137
b6db386f
BM
138 if (group->generator != NULL)
139 EC_POINT_free(group->generator);
140 BN_free(&group->order);
141 BN_free(&group->cofactor);
142
458c2917
BM
143 if (group->seed)
144 OPENSSL_free(group->seed);
145
0657bf9c
BM
146 OPENSSL_free(group);
147 }
148
149
150void EC_GROUP_clear_free(EC_GROUP *group)
151 {
7711de24
BM
152 if (!group) return;
153
0657bf9c
BM
154 if (group->meth->group_clear_finish != 0)
155 group->meth->group_clear_finish(group);
bbab9b61 156 else if (group->meth->group_finish != 0)
0657bf9c 157 group->meth->group_finish(group);
df9cc153 158
9dd84053 159 EC_EX_DATA_clear_free_all_data(&group->extra_data);
df9cc153 160
f54be179
AP
161 if (group->mont_data)
162 BN_MONT_CTX_free(group->mont_data);
163
b6db386f
BM
164 if (group->generator != NULL)
165 EC_POINT_clear_free(group->generator);
166 BN_clear_free(&group->order);
167 BN_clear_free(&group->cofactor);
168
458c2917
BM
169 if (group->seed)
170 {
4579924b 171 OPENSSL_cleanse(group->seed, group->seed_len);
458c2917
BM
172 OPENSSL_free(group->seed);
173 }
174
4579924b 175 OPENSSL_cleanse(group, sizeof *group);
0657bf9c
BM
176 OPENSSL_free(group);
177 }
178
179
180int EC_GROUP_copy(EC_GROUP *dest, const EC_GROUP *src)
181 {
ba729265
BM
182 EC_EXTRA_DATA *d;
183
0657bf9c
BM
184 if (dest->meth->group_copy == 0)
185 {
186 ECerr(EC_F_EC_GROUP_COPY, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
187 return 0;
188 }
189 if (dest->meth != src->meth)
190 {
191 ECerr(EC_F_EC_GROUP_COPY, EC_R_INCOMPATIBLE_OBJECTS);
192 return 0;
193 }
1d5bd6cf
BM
194 if (dest == src)
195 return 1;
0657bf9c 196
9dd84053 197 EC_EX_DATA_free_all_data(&dest->extra_data);
df9cc153 198
ba729265
BM
199 for (d = src->extra_data; d != NULL; d = d->next)
200 {
201 void *t = d->dup_func(d->data);
202
203 if (t == NULL)
204 return 0;
9dd84053 205 if (!EC_EX_DATA_set_data(&dest->extra_data, t, d->dup_func, d->free_func, d->clear_free_func))
ba729265 206 return 0;
df9cc153
BM
207 }
208
f54be179
AP
209 if (src->mont_data != NULL)
210 {
211 if (dest->mont_data == NULL)
212 {
213 dest->mont_data = BN_MONT_CTX_new();
214 if (dest->mont_data == NULL) return 0;
215 }
216 if (!BN_MONT_CTX_copy(dest->mont_data, src->mont_data)) return 0;
217 }
218 else
219 {
220 /* src->generator == NULL */
221 if (dest->mont_data != NULL)
222 {
223 BN_MONT_CTX_free(dest->mont_data);
224 dest->mont_data = NULL;
225 }
226 }
227
b6db386f
BM
228 if (src->generator != NULL)
229 {
230 if (dest->generator == NULL)
231 {
232 dest->generator = EC_POINT_new(dest);
233 if (dest->generator == NULL) return 0;
234 }
235 if (!EC_POINT_copy(dest->generator, src->generator)) return 0;
236 }
237 else
238 {
239 /* src->generator == NULL */
240 if (dest->generator != NULL)
241 {
242 EC_POINT_clear_free(dest->generator);
243 dest->generator = NULL;
244 }
245 }
246
247 if (!BN_copy(&dest->order, &src->order)) return 0;
248 if (!BN_copy(&dest->cofactor, &src->cofactor)) return 0;
249
254ef80d
BM
250 dest->curve_name = src->curve_name;
251 dest->asn1_flag = src->asn1_flag;
252 dest->asn1_form = src->asn1_form;
458c2917
BM
253
254 if (src->seed)
255 {
256 if (dest->seed)
257 OPENSSL_free(dest->seed);
258 dest->seed = OPENSSL_malloc(src->seed_len);
259 if (dest->seed == NULL)
260 return 0;
261 if (!memcpy(dest->seed, src->seed, src->seed_len))
262 return 0;
263 dest->seed_len = src->seed_len;
264 }
265 else
266 {
267 if (dest->seed)
268 OPENSSL_free(dest->seed);
269 dest->seed = NULL;
270 dest->seed_len = 0;
271 }
272
b6db386f 273
0657bf9c
BM
274 return dest->meth->group_copy(dest, src);
275 }
276
277
7793f30e
BM
278EC_GROUP *EC_GROUP_dup(const EC_GROUP *a)
279 {
280 EC_GROUP *t = NULL;
281 int ok = 0;
282
283 if (a == NULL) return NULL;
284
285 if ((t = EC_GROUP_new(a->meth)) == NULL) return(NULL);
286 if (!EC_GROUP_copy(t, a)) goto err;
287
288 ok = 1;
289
290 err:
291 if (!ok)
292 {
293 if (t) EC_GROUP_free(t);
294 return NULL;
295 }
296 else return t;
297 }
298
299
48fe4d62
BM
300const EC_METHOD *EC_GROUP_method_of(const EC_GROUP *group)
301 {
302 return group->meth;
303 }
304
305
458c2917
BM
306int EC_METHOD_get_field_type(const EC_METHOD *meth)
307 {
308 return meth->field_type;
309 }
310
311
b6db386f 312int EC_GROUP_set_generator(EC_GROUP *group, const EC_POINT *generator, const BIGNUM *order, const BIGNUM *cofactor)
bb62a8b0 313 {
b6db386f 314 if (generator == NULL)
bb62a8b0 315 {
b6db386f
BM
316 ECerr(EC_F_EC_GROUP_SET_GENERATOR, ERR_R_PASSED_NULL_PARAMETER);
317 return 0 ;
bb62a8b0 318 }
b6db386f
BM
319
320 if (group->generator == NULL)
321 {
322 group->generator = EC_POINT_new(group);
323 if (group->generator == NULL) return 0;
324 }
325 if (!EC_POINT_copy(group->generator, generator)) return 0;
326
327 if (order != NULL)
328 { if (!BN_copy(&group->order, order)) return 0; }
329 else
b6358c89 330 BN_zero(&group->order);
b6db386f
BM
331
332 if (cofactor != NULL)
333 { if (!BN_copy(&group->cofactor, cofactor)) return 0; }
334 else
b6358c89 335 BN_zero(&group->cofactor);
b6db386f 336
f54be179
AP
337 /* We ignore the return value because some groups have an order with
338 * factors of two, which makes the Montgomery setup fail.
339 * |group->mont_data| will be NULL in this case. */
340 ec_precompute_mont_data(group);
341
b6db386f 342 return 1;
bb62a8b0
BM
343 }
344
345
9dd84053 346const EC_POINT *EC_GROUP_get0_generator(const EC_GROUP *group)
bb62a8b0 347 {
b6db386f 348 return group->generator;
bb62a8b0
BM
349 }
350
f54be179
AP
351BN_MONT_CTX *EC_GROUP_get_mont_data(const EC_GROUP *group)
352 {
353 return group->mont_data;
354 }
bb62a8b0 355
b6db386f 356int EC_GROUP_get_order(const EC_GROUP *group, BIGNUM *order, BN_CTX *ctx)
0657bf9c 357 {
b6db386f 358 if (!BN_copy(order, &group->order))
0657bf9c 359 return 0;
b6db386f
BM
360
361 return !BN_is_zero(order);
0657bf9c
BM
362 }
363
364
b6db386f 365int EC_GROUP_get_cofactor(const EC_GROUP *group, BIGNUM *cofactor, BN_CTX *ctx)
48fe4d62 366 {
b6db386f 367 if (!BN_copy(cofactor, &group->cofactor))
48fe4d62 368 return 0;
b6db386f
BM
369
370 return !BN_is_zero(&group->cofactor);
48fe4d62
BM
371 }
372
373
7dc17a6c 374void EC_GROUP_set_curve_name(EC_GROUP *group, int nid)
b6db386f 375 {
254ef80d 376 group->curve_name = nid;
b6db386f
BM
377 }
378
379
7dc17a6c 380int EC_GROUP_get_curve_name(const EC_GROUP *group)
b6db386f 381 {
254ef80d 382 return group->curve_name;
b6db386f
BM
383 }
384
385
458c2917
BM
386void EC_GROUP_set_asn1_flag(EC_GROUP *group, int flag)
387 {
388 group->asn1_flag = flag;
389 }
390
391
392int EC_GROUP_get_asn1_flag(const EC_GROUP *group)
393 {
394 return group->asn1_flag;
395 }
396
397
254ef80d
BM
398void EC_GROUP_set_point_conversion_form(EC_GROUP *group,
399 point_conversion_form_t form)
400 {
401 group->asn1_form = form;
402 }
403
404
405point_conversion_form_t EC_GROUP_get_point_conversion_form(const EC_GROUP *group)
406 {
407 return group->asn1_form;
408 }
409
410
5f3d6f70
BM
411size_t EC_GROUP_set_seed(EC_GROUP *group, const unsigned char *p, size_t len)
412 {
413 if (group->seed)
414 {
415 OPENSSL_free(group->seed);
416 group->seed = NULL;
417 group->seed_len = 0;
418 }
419
420 if (!len || !p)
421 return 1;
422
423 if ((group->seed = OPENSSL_malloc(len)) == NULL)
424 return 0;
425 memcpy(group->seed, p, len);
426 group->seed_len = len;
427
428 return len;
429 }
430
431
432unsigned char *EC_GROUP_get0_seed(const EC_GROUP *group)
433 {
434 return group->seed;
435 }
436
437
438size_t EC_GROUP_get_seed_len(const EC_GROUP *group)
439 {
440 return group->seed_len;
441 }
442
443
b6db386f 444int EC_GROUP_set_curve_GFp(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx)
48fe4d62 445 {
7793f30e 446 if (group->meth->group_set_curve == 0)
48fe4d62 447 {
b6db386f 448 ECerr(EC_F_EC_GROUP_SET_CURVE_GFP, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
48fe4d62
BM
449 return 0;
450 }
7793f30e 451 return group->meth->group_set_curve(group, p, a, b, ctx);
48fe4d62
BM
452 }
453
454
b6db386f 455int EC_GROUP_get_curve_GFp(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx)
48fe4d62 456 {
7793f30e 457 if (group->meth->group_get_curve == 0)
48fe4d62 458 {
b6db386f 459 ECerr(EC_F_EC_GROUP_GET_CURVE_GFP, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
48fe4d62
BM
460 return 0;
461 }
7793f30e
BM
462 return group->meth->group_get_curve(group, p, a, b, ctx);
463 }
464
b3310161 465#ifndef OPENSSL_NO_EC2M
7793f30e
BM
466int EC_GROUP_set_curve_GF2m(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx)
467 {
468 if (group->meth->group_set_curve == 0)
469 {
470 ECerr(EC_F_EC_GROUP_SET_CURVE_GF2M, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
471 return 0;
472 }
473 return group->meth->group_set_curve(group, p, a, b, ctx);
474 }
475
476
477int EC_GROUP_get_curve_GF2m(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx)
478 {
479 if (group->meth->group_get_curve == 0)
480 {
481 ECerr(EC_F_EC_GROUP_GET_CURVE_GF2M, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
482 return 0;
483 }
484 return group->meth->group_get_curve(group, p, a, b, ctx);
485 }
b3310161 486#endif
7793f30e
BM
487
488int EC_GROUP_get_degree(const EC_GROUP *group)
489 {
490 if (group->meth->group_get_degree == 0)
491 {
492 ECerr(EC_F_EC_GROUP_GET_DEGREE, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
493 return 0;
494 }
495 return group->meth->group_get_degree(group);
48fe4d62
BM
496 }
497
498
17d6bb81 499int EC_GROUP_check_discriminant(const EC_GROUP *group, BN_CTX *ctx)
af28dd6c 500 {
17d6bb81 501 if (group->meth->group_check_discriminant == 0)
af28dd6c 502 {
17d6bb81 503 ECerr(EC_F_EC_GROUP_CHECK_DISCRIMINANT, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
af28dd6c
BM
504 return 0;
505 }
17d6bb81 506 return group->meth->group_check_discriminant(group, ctx);
af28dd6c
BM
507 }
508
509
ada0e717
BM
510int EC_GROUP_cmp(const EC_GROUP *a, const EC_GROUP *b, BN_CTX *ctx)
511 {
512 int r = 0;
513 BIGNUM *a1, *a2, *a3, *b1, *b2, *b3;
514 BN_CTX *ctx_new = NULL;
515
516 /* compare the field types*/
517 if (EC_METHOD_get_field_type(EC_GROUP_method_of(a)) !=
518 EC_METHOD_get_field_type(EC_GROUP_method_of(b)))
519 return 1;
ca567a03 520 /* compare the curve name (if present in both) */
7dc17a6c 521 if (EC_GROUP_get_curve_name(a) && EC_GROUP_get_curve_name(b) &&
ca567a03
BM
522 EC_GROUP_get_curve_name(a) != EC_GROUP_get_curve_name(b))
523 return 1;
ada0e717
BM
524
525 if (!ctx)
526 ctx_new = ctx = BN_CTX_new();
527 if (!ctx)
528 return -1;
529
530 BN_CTX_start(ctx);
531 a1 = BN_CTX_get(ctx);
532 a2 = BN_CTX_get(ctx);
533 a3 = BN_CTX_get(ctx);
534 b1 = BN_CTX_get(ctx);
535 b2 = BN_CTX_get(ctx);
536 b3 = BN_CTX_get(ctx);
537 if (!b3)
538 {
539 BN_CTX_end(ctx);
540 if (ctx_new)
541 BN_CTX_free(ctx);
542 return -1;
543 }
544
545 /* XXX This approach assumes that the external representation
546 * of curves over the same field type is the same.
547 */
548 if (!a->meth->group_get_curve(a, a1, a2, a3, ctx) ||
549 !b->meth->group_get_curve(b, b1, b2, b3, ctx))
550 r = 1;
551
80c808b9 552 if (r || BN_cmp(a1, b1) || BN_cmp(a2, b2) || BN_cmp(a3, b3))
ada0e717
BM
553 r = 1;
554
555 /* XXX EC_POINT_cmp() assumes that the methods are equal */
556 if (r || EC_POINT_cmp(a, EC_GROUP_get0_generator(a),
557 EC_GROUP_get0_generator(b), ctx))
558 r = 1;
559
560 if (!r)
561 {
562 /* compare the order and cofactor */
563 if (!EC_GROUP_get_order(a, a1, ctx) ||
564 !EC_GROUP_get_order(b, b1, ctx) ||
565 !EC_GROUP_get_cofactor(a, a2, ctx) ||
566 !EC_GROUP_get_cofactor(b, b2, ctx))
567 {
568 BN_CTX_end(ctx);
569 if (ctx_new)
570 BN_CTX_free(ctx);
571 return -1;
572 }
573 if (BN_cmp(a1, b1) || BN_cmp(a2, b2))
574 r = 1;
575 }
576
577 BN_CTX_end(ctx);
578 if (ctx_new)
579 BN_CTX_free(ctx);
580
581 return r;
582 }
583
584
df9cc153 585/* this has 'package' visibility */
9dd84053 586int EC_EX_DATA_set_data(EC_EXTRA_DATA **ex_data, void *data,
ba729265 587 void *(*dup_func)(void *), void (*free_func)(void *), void (*clear_free_func)(void *))
df9cc153 588 {
ba729265
BM
589 EC_EXTRA_DATA *d;
590
9dd84053 591 if (ex_data == NULL)
df9cc153 592 return 0;
ba729265 593
9dd84053 594 for (d = *ex_data; d != NULL; d = d->next)
ba729265
BM
595 {
596 if (d->dup_func == dup_func && d->free_func == free_func && d->clear_free_func == clear_free_func)
597 {
137023dd 598 ECerr(EC_F_EC_EX_DATA_SET_DATA, EC_R_SLOT_FULL);
ba729265
BM
599 return 0;
600 }
df9cc153
BM
601 }
602
ba729265
BM
603 if (data == NULL)
604 /* no explicit entry needed */
605 return 1;
606
607 d = OPENSSL_malloc(sizeof *d);
608 if (d == NULL)
609 return 0;
610
611 d->data = data;
612 d->dup_func = dup_func;
613 d->free_func = free_func;
614 d->clear_free_func = clear_free_func;
615
9dd84053
NL
616 d->next = *ex_data;
617 *ex_data = d;
ba729265 618
df9cc153
BM
619 return 1;
620 }
621
df9cc153 622/* this has 'package' visibility */
9dd84053 623void *EC_EX_DATA_get_data(const EC_EXTRA_DATA *ex_data,
ba729265 624 void *(*dup_func)(void *), void (*free_func)(void *), void (*clear_free_func)(void *))
df9cc153 625 {
9dd84053 626 const EC_EXTRA_DATA *d;
ba729265 627
9dd84053 628 for (d = ex_data; d != NULL; d = d->next)
ba729265
BM
629 {
630 if (d->dup_func == dup_func && d->free_func == free_func && d->clear_free_func == clear_free_func)
631 return d->data;
df9cc153 632 }
ba729265
BM
633
634 return NULL;
635 }
df9cc153 636
ba729265 637/* this has 'package' visibility */
9dd84053 638void EC_EX_DATA_free_data(EC_EXTRA_DATA **ex_data,
ba729265
BM
639 void *(*dup_func)(void *), void (*free_func)(void *), void (*clear_free_func)(void *))
640 {
641 EC_EXTRA_DATA **p;
642
9dd84053 643 if (ex_data == NULL)
ba729265
BM
644 return;
645
9dd84053 646 for (p = ex_data; *p != NULL; p = &((*p)->next))
ba729265
BM
647 {
648 if ((*p)->dup_func == dup_func && (*p)->free_func == free_func && (*p)->clear_free_func == clear_free_func)
649 {
650 EC_EXTRA_DATA *next = (*p)->next;
651
652 (*p)->free_func((*p)->data);
653 OPENSSL_free(*p);
654
655 *p = next;
656 return;
657 }
658 }
df9cc153
BM
659 }
660
ba729265 661/* this has 'package' visibility */
bbbd6710 662void EC_EX_DATA_clear_free_data(EC_EXTRA_DATA **ex_data,
ba729265
BM
663 void *(*dup_func)(void *), void (*free_func)(void *), void (*clear_free_func)(void *))
664 {
665 EC_EXTRA_DATA **p;
666
9dd84053 667 if (ex_data == NULL)
ba729265
BM
668 return;
669
9dd84053 670 for (p = ex_data; *p != NULL; p = &((*p)->next))
ba729265
BM
671 {
672 if ((*p)->dup_func == dup_func && (*p)->free_func == free_func && (*p)->clear_free_func == clear_free_func)
673 {
674 EC_EXTRA_DATA *next = (*p)->next;
675
676 (*p)->clear_free_func((*p)->data);
677 OPENSSL_free(*p);
678
679 *p = next;
680 return;
681 }
682 }
683 }
df9cc153
BM
684
685/* this has 'package' visibility */
9dd84053 686void EC_EX_DATA_free_all_data(EC_EXTRA_DATA **ex_data)
df9cc153 687 {
ba729265
BM
688 EC_EXTRA_DATA *d;
689
9dd84053 690 if (ex_data == NULL)
ba729265
BM
691 return;
692
9dd84053 693 d = *ex_data;
ba729265
BM
694 while (d)
695 {
696 EC_EXTRA_DATA *next = d->next;
697
698 d->free_func(d->data);
699 OPENSSL_free(d);
700
701 d = next;
702 }
9dd84053 703 *ex_data = NULL;
df9cc153
BM
704 }
705
df9cc153 706/* this has 'package' visibility */
9dd84053 707void EC_EX_DATA_clear_free_all_data(EC_EXTRA_DATA **ex_data)
df9cc153 708 {
ba729265
BM
709 EC_EXTRA_DATA *d;
710
9dd84053 711 if (ex_data == NULL)
ba729265
BM
712 return;
713
9dd84053 714 d = *ex_data;
ba729265
BM
715 while (d)
716 {
717 EC_EXTRA_DATA *next = d->next;
718
719 d->clear_free_func(d->data);
720 OPENSSL_free(d);
721
722 d = next;
723 }
9dd84053 724 *ex_data = NULL;
df9cc153
BM
725 }
726
0657bf9c
BM
727
728/* functions for EC_POINT objects */
729
730EC_POINT *EC_POINT_new(const EC_GROUP *group)
731 {
732 EC_POINT *ret;
733
734 if (group == NULL)
735 {
736 ECerr(EC_F_EC_POINT_NEW, ERR_R_PASSED_NULL_PARAMETER);
737 return NULL;
738 }
739 if (group->meth->point_init == 0)
740 {
741 ECerr(EC_F_EC_POINT_NEW, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
742 return NULL;
743 }
744
745 ret = OPENSSL_malloc(sizeof *ret);
746 if (ret == NULL)
747 {
748 ECerr(EC_F_EC_POINT_NEW, ERR_R_MALLOC_FAILURE);
749 return NULL;
750 }
751
752 ret->meth = group->meth;
753
754 if (!ret->meth->point_init(ret))
755 {
756 OPENSSL_free(ret);
757 return NULL;
758 }
759
760 return ret;
761 }
762
763
764void EC_POINT_free(EC_POINT *point)
765 {
7711de24
BM
766 if (!point) return;
767
0657bf9c
BM
768 if (point->meth->point_finish != 0)
769 point->meth->point_finish(point);
770 OPENSSL_free(point);
771 }
772
773
774void EC_POINT_clear_free(EC_POINT *point)
775 {
7711de24
BM
776 if (!point) return;
777
0657bf9c
BM
778 if (point->meth->point_clear_finish != 0)
779 point->meth->point_clear_finish(point);
67b6f1ca 780 else if (point->meth->point_finish != 0)
0657bf9c 781 point->meth->point_finish(point);
4579924b 782 OPENSSL_cleanse(point, sizeof *point);
0657bf9c
BM
783 OPENSSL_free(point);
784 }
785
786
787int EC_POINT_copy(EC_POINT *dest, const EC_POINT *src)
788 {
789 if (dest->meth->point_copy == 0)
790 {
791 ECerr(EC_F_EC_POINT_COPY, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
792 return 0;
793 }
794 if (dest->meth != src->meth)
795 {
796 ECerr(EC_F_EC_POINT_COPY, EC_R_INCOMPATIBLE_OBJECTS);
797 return 0;
798 }
91f29a38
BM
799 if (dest == src)
800 return 1;
0657bf9c
BM
801 return dest->meth->point_copy(dest, src);
802 }
803
804
7793f30e
BM
805EC_POINT *EC_POINT_dup(const EC_POINT *a, const EC_GROUP *group)
806 {
807 EC_POINT *t;
808 int r;
809
810 if (a == NULL) return NULL;
811
812 t = EC_POINT_new(group);
813 if (t == NULL) return(NULL);
814 r = EC_POINT_copy(t, a);
815 if (!r)
816 {
817 EC_POINT_free(t);
818 return NULL;
819 }
820 else return t;
821 }
822
823
48fe4d62
BM
824const EC_METHOD *EC_POINT_method_of(const EC_POINT *point)
825 {
826 return point->meth;
827 }
828
829
226cc7de
BM
830int EC_POINT_set_to_infinity(const EC_GROUP *group, EC_POINT *point)
831 {
832 if (group->meth->point_set_to_infinity == 0)
833 {
834 ECerr(EC_F_EC_POINT_SET_TO_INFINITY, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
835 return 0;
836 }
837 if (group->meth != point->meth)
838 {
839 ECerr(EC_F_EC_POINT_SET_TO_INFINITY, EC_R_INCOMPATIBLE_OBJECTS);
840 return 0;
841 }
842 return group->meth->point_set_to_infinity(group, point);
843 }
844
845
1d5bd6cf
BM
846int EC_POINT_set_Jprojective_coordinates_GFp(const EC_GROUP *group, EC_POINT *point,
847 const BIGNUM *x, const BIGNUM *y, const BIGNUM *z, BN_CTX *ctx)
848 {
35b73a1f 849 if (group->meth->point_set_Jprojective_coordinates_GFp == 0)
1d5bd6cf
BM
850 {
851 ECerr(EC_F_EC_POINT_SET_JPROJECTIVE_COORDINATES_GFP, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
852 return 0;
853 }
854 if (group->meth != point->meth)
855 {
856 ECerr(EC_F_EC_POINT_SET_JPROJECTIVE_COORDINATES_GFP, EC_R_INCOMPATIBLE_OBJECTS);
857 return 0;
858 }
35b73a1f 859 return group->meth->point_set_Jprojective_coordinates_GFp(group, point, x, y, z, ctx);
1d5bd6cf
BM
860 }
861
862
863int EC_POINT_get_Jprojective_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point,
864 BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *ctx)
865 {
35b73a1f 866 if (group->meth->point_get_Jprojective_coordinates_GFp == 0)
1d5bd6cf
BM
867 {
868 ECerr(EC_F_EC_POINT_GET_JPROJECTIVE_COORDINATES_GFP, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
869 return 0;
870 }
871 if (group->meth != point->meth)
872 {
873 ECerr(EC_F_EC_POINT_GET_JPROJECTIVE_COORDINATES_GFP, EC_R_INCOMPATIBLE_OBJECTS);
874 return 0;
875 }
35b73a1f 876 return group->meth->point_get_Jprojective_coordinates_GFp(group, point, x, y, z, ctx);
1d5bd6cf
BM
877 }
878
879
226cc7de
BM
880int EC_POINT_set_affine_coordinates_GFp(const EC_GROUP *group, EC_POINT *point,
881 const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx)
882 {
7793f30e 883 if (group->meth->point_set_affine_coordinates == 0)
226cc7de
BM
884 {
885 ECerr(EC_F_EC_POINT_SET_AFFINE_COORDINATES_GFP, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
886 return 0;
887 }
888 if (group->meth != point->meth)
889 {
890 ECerr(EC_F_EC_POINT_SET_AFFINE_COORDINATES_GFP, EC_R_INCOMPATIBLE_OBJECTS);
891 return 0;
892 }
7793f30e 893 return group->meth->point_set_affine_coordinates(group, point, x, y, ctx);
226cc7de
BM
894 }
895
b3310161 896#ifndef OPENSSL_NO_EC2M
35b73a1f
BM
897int EC_POINT_set_affine_coordinates_GF2m(const EC_GROUP *group, EC_POINT *point,
898 const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx)
7793f30e 899 {
35b73a1f 900 if (group->meth->point_set_affine_coordinates == 0)
7793f30e 901 {
35b73a1f 902 ECerr(EC_F_EC_POINT_SET_AFFINE_COORDINATES_GF2M, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
7793f30e
BM
903 return 0;
904 }
905 if (group->meth != point->meth)
906 {
35b73a1f 907 ECerr(EC_F_EC_POINT_SET_AFFINE_COORDINATES_GF2M, EC_R_INCOMPATIBLE_OBJECTS);
7793f30e
BM
908 return 0;
909 }
35b73a1f 910 return group->meth->point_set_affine_coordinates(group, point, x, y, ctx);
7793f30e 911 }
b3310161 912#endif
7793f30e 913
35b73a1f
BM
914int EC_POINT_get_affine_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point,
915 BIGNUM *x, BIGNUM *y, BN_CTX *ctx)
7793f30e 916 {
35b73a1f 917 if (group->meth->point_get_affine_coordinates == 0)
7793f30e 918 {
35b73a1f 919 ECerr(EC_F_EC_POINT_GET_AFFINE_COORDINATES_GFP, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
7793f30e
BM
920 return 0;
921 }
922 if (group->meth != point->meth)
923 {
35b73a1f 924 ECerr(EC_F_EC_POINT_GET_AFFINE_COORDINATES_GFP, EC_R_INCOMPATIBLE_OBJECTS);
7793f30e
BM
925 return 0;
926 }
35b73a1f 927 return group->meth->point_get_affine_coordinates(group, point, x, y, ctx);
7793f30e
BM
928 }
929
b3310161 930#ifndef OPENSSL_NO_EC2M
35b73a1f
BM
931int EC_POINT_get_affine_coordinates_GF2m(const EC_GROUP *group, const EC_POINT *point,
932 BIGNUM *x, BIGNUM *y, BN_CTX *ctx)
7793f30e 933 {
35b73a1f 934 if (group->meth->point_get_affine_coordinates == 0)
7793f30e 935 {
35b73a1f 936 ECerr(EC_F_EC_POINT_GET_AFFINE_COORDINATES_GF2M, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
7793f30e
BM
937 return 0;
938 }
939 if (group->meth != point->meth)
940 {
35b73a1f 941 ECerr(EC_F_EC_POINT_GET_AFFINE_COORDINATES_GF2M, EC_R_INCOMPATIBLE_OBJECTS);
7793f30e
BM
942 return 0;
943 }
35b73a1f 944 return group->meth->point_get_affine_coordinates(group, point, x, y, ctx);
7793f30e 945 }
b3310161 946#endif
7793f30e 947
0657bf9c
BM
948int EC_POINT_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx)
949 {
950 if (group->meth->add == 0)
951 {
952 ECerr(EC_F_EC_POINT_ADD, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
953 return 0;
954 }
955 if ((group->meth != r->meth) || (r->meth != a->meth) || (a->meth != b->meth))
956 {
957 ECerr(EC_F_EC_POINT_ADD, EC_R_INCOMPATIBLE_OBJECTS);
958 return 0;
959 }
960 return group->meth->add(group, r, a, b, ctx);
961 }
962
963
964int EC_POINT_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, BN_CTX *ctx)
965 {
966 if (group->meth->dbl == 0)
967 {
968 ECerr(EC_F_EC_POINT_DBL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
969 return 0;
970 }
971 if ((group->meth != r->meth) || (r->meth != a->meth))
972 {
973 ECerr(EC_F_EC_POINT_DBL, EC_R_INCOMPATIBLE_OBJECTS);
974 return 0;
975 }
976 return group->meth->dbl(group, r, a, ctx);
977 }
978
979
1d5bd6cf
BM
980int EC_POINT_invert(const EC_GROUP *group, EC_POINT *a, BN_CTX *ctx)
981 {
cba11f57 982 if (group->meth->invert == 0)
1d5bd6cf 983 {
aa4ce731 984 ECerr(EC_F_EC_POINT_INVERT, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
1d5bd6cf
BM
985 return 0;
986 }
987 if (group->meth != a->meth)
988 {
aa4ce731 989 ECerr(EC_F_EC_POINT_INVERT, EC_R_INCOMPATIBLE_OBJECTS);
1d5bd6cf
BM
990 return 0;
991 }
992 return group->meth->invert(group, a, ctx);
993 }
994
995
0657bf9c
BM
996int EC_POINT_is_at_infinity(const EC_GROUP *group, const EC_POINT *point)
997 {
998 if (group->meth->is_at_infinity == 0)
999 {
1000 ECerr(EC_F_EC_POINT_IS_AT_INFINITY, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
1001 return 0;
1002 }
1003 if (group->meth != point->meth)
1004 {
1005 ECerr(EC_F_EC_POINT_IS_AT_INFINITY, EC_R_INCOMPATIBLE_OBJECTS);
1006 return 0;
1007 }
1008 return group->meth->is_at_infinity(group, point);
1009 }
1010
1011
1012int EC_POINT_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx)
1013 {
1014 if (group->meth->is_on_curve == 0)
1015 {
1016 ECerr(EC_F_EC_POINT_IS_ON_CURVE, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
1017 return 0;
1018 }
1019 if (group->meth != point->meth)
1020 {
1021 ECerr(EC_F_EC_POINT_IS_ON_CURVE, EC_R_INCOMPATIBLE_OBJECTS);
1022 return 0;
1023 }
1024 return group->meth->is_on_curve(group, point, ctx);
1025 }
1026
1027
1d5bd6cf
BM
1028int EC_POINT_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx)
1029 {
1030 if (group->meth->point_cmp == 0)
1031 {
1032 ECerr(EC_F_EC_POINT_CMP, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
ca567a03 1033 return -1;
1d5bd6cf
BM
1034 }
1035 if ((group->meth != a->meth) || (a->meth != b->meth))
1036 {
1037 ECerr(EC_F_EC_POINT_CMP, EC_R_INCOMPATIBLE_OBJECTS);
ca567a03 1038 return -1;
1d5bd6cf
BM
1039 }
1040 return group->meth->point_cmp(group, a, b, ctx);
1041 }
1042
1043
e869d4bd 1044int EC_POINT_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx)
0657bf9c
BM
1045 {
1046 if (group->meth->make_affine == 0)
1047 {
1048 ECerr(EC_F_EC_POINT_MAKE_AFFINE, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
1049 return 0;
1050 }
1051 if (group->meth != point->meth)
1052 {
1053 ECerr(EC_F_EC_POINT_MAKE_AFFINE, EC_R_INCOMPATIBLE_OBJECTS);
1054 return 0;
1055 }
1056 return group->meth->make_affine(group, point, ctx);
1057 }
48fe4d62
BM
1058
1059
1060int EC_POINTs_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx)
1061 {
1062 size_t i;
1063
1064 if (group->meth->points_make_affine == 0)
1065 {
1066 ECerr(EC_F_EC_POINTS_MAKE_AFFINE, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
1067 return 0;
1068 }
1069 for (i = 0; i < num; i++)
1070 {
1071 if (group->meth != points[i]->meth)
1072 {
1073 ECerr(EC_F_EC_POINTS_MAKE_AFFINE, EC_R_INCOMPATIBLE_OBJECTS);
1074 return 0;
1075 }
1076 }
1077 return group->meth->points_make_affine(group, num, points, ctx);
1078 }
37c660ff
BM
1079
1080
1081/* Functions for point multiplication.
1082 *
1083 * If group->meth->mul is 0, we use the wNAF-based implementations in ec_mult.c;
1084 * otherwise we dispatch through methods.
1085 */
1086
1087int EC_POINTs_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar,
1088 size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *ctx)
1089 {
1090 if (group->meth->mul == 0)
1091 /* use default */
1092 return ec_wNAF_mul(group, r, scalar, num, points, scalars, ctx);
1093
1094 return group->meth->mul(group, r, scalar, num, points, scalars, ctx);
1095 }
1096
1097int EC_POINT_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *g_scalar,
1098 const EC_POINT *point, const BIGNUM *p_scalar, BN_CTX *ctx)
1099 {
1100 /* just a convenient interface to EC_POINTs_mul() */
1101
1102 const EC_POINT *points[1];
1103 const BIGNUM *scalars[1];
1104
1105 points[0] = point;
1106 scalars[0] = p_scalar;
1107
1108 return EC_POINTs_mul(group, r, g_scalar, (point != NULL && p_scalar != NULL), points, scalars, ctx);
1109 }
1110
1111int EC_GROUP_precompute_mult(EC_GROUP *group, BN_CTX *ctx)
1112 {
1113 if (group->meth->mul == 0)
1114 /* use default */
1115 return ec_wNAF_precompute_mult(group, ctx);
1116
1117 if (group->meth->precompute_mult != 0)
1118 return group->meth->precompute_mult(group, ctx);
1119 else
1120 return 1; /* nothing to do, so report success */
1121 }
1122
1123int EC_GROUP_have_precompute_mult(const EC_GROUP *group)
1124 {
1125 if (group->meth->mul == 0)
1126 /* use default */
1127 return ec_wNAF_have_precompute_mult(group);
1128
1129 if (group->meth->have_precompute_mult != 0)
1130 return group->meth->have_precompute_mult(group);
1131 else
1132 return 0; /* cannot tell whether precomputation has been performed */
1133 }
f54be179
AP
1134
1135/* ec_precompute_mont_data sets |group->mont_data| from |group->order| and
1136 * returns one on success. On error it returns zero. */
1137int ec_precompute_mont_data(EC_GROUP *group)
1138 {
1139 BN_CTX *ctx = BN_CTX_new();
1140 int ret = 0;
1141
1142 if (group->mont_data)
1143 {
1144 BN_MONT_CTX_free(group->mont_data);
1145 group->mont_data = NULL;
1146 }
1147
1148 if (ctx == NULL)
1149 goto err;
1150
1151 group->mont_data = BN_MONT_CTX_new();
1152 if (!group->mont_data)
1153 goto err;
1154
1155 if (!BN_MONT_CTX_set(group->mont_data, &group->order, ctx))
1156 {
1157 BN_MONT_CTX_free(group->mont_data);
1158 group->mont_data = NULL;
1159 goto err;
1160 }
1161
1162 ret = 1;
1163
1164err:
1165
1166 if (ctx)
1167 BN_CTX_free(ctx);
1168 return ret;
1169 }