]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/ec/ec_lib.c
typo
[thirdparty/openssl.git] / crypto / ec / ec_lib.c
CommitLineData
65e81670
BM
1/* crypto/ec/ec_lib.c */
2/* ====================================================================
4d94ae00 3 * Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved.
65e81670
BM
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
c4b36ff4
BM
56#include <string.h>
57
0657bf9c 58#include <openssl/err.h>
bb62a8b0 59#include <openssl/opensslv.h>
0657bf9c 60
65e81670 61#include "ec_lcl.h"
0657bf9c 62
bb62a8b0
BM
63static const char EC_version[] = "EC" OPENSSL_VERSION_PTEXT;
64
0657bf9c
BM
65
66/* functions for EC_GROUP objects */
67
68EC_GROUP *EC_GROUP_new(const EC_METHOD *meth)
69 {
70 EC_GROUP *ret;
71
72 if (meth == NULL)
73 {
74 ECerr(EC_F_EC_GROUP_NEW, ERR_R_PASSED_NULL_PARAMETER);
75 return NULL;
76 }
77 if (meth->group_init == 0)
78 {
79 ECerr(EC_F_EC_GROUP_NEW, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
80 return NULL;
81 }
82
83 ret = OPENSSL_malloc(sizeof *ret);
84 if (ret == NULL)
85 {
86 ECerr(EC_F_EC_GROUP_NEW, ERR_R_MALLOC_FAILURE);
87 return NULL;
88 }
89
90 ret->meth = meth;
df9cc153
BM
91
92 ret->extra_data = NULL;
93 ret->extra_data_dup_func = 0;
94 ret->extra_data_free_func = 0;
95 ret->extra_data_clear_free_func = 0;
945e15a2 96
b6db386f
BM
97 ret->generator = NULL;
98 BN_init(&ret->order);
99 BN_init(&ret->cofactor);
100
254ef80d
BM
101 ret->curve_name = 0;
102 ret->asn1_flag = 0;
103 ret->asn1_form = POINT_CONVERSION_COMPRESSED;
458c2917
BM
104
105 ret->seed = NULL;
106 ret->seed_len = 0;
945e15a2 107
0657bf9c
BM
108 if (!meth->group_init(ret))
109 {
110 OPENSSL_free(ret);
111 return NULL;
112 }
113
114 return ret;
115 }
116
117
0657bf9c
BM
118void EC_GROUP_free(EC_GROUP *group)
119 {
7711de24
BM
120 if (!group) return;
121
0657bf9c
BM
122 if (group->meth->group_finish != 0)
123 group->meth->group_finish(group);
df9cc153
BM
124
125 EC_GROUP_free_extra_data(group);
126
b6db386f
BM
127 if (group->generator != NULL)
128 EC_POINT_free(group->generator);
129 BN_free(&group->order);
130 BN_free(&group->cofactor);
131
458c2917
BM
132 if (group->seed)
133 OPENSSL_free(group->seed);
134
0657bf9c
BM
135 OPENSSL_free(group);
136 }
137
138
139void EC_GROUP_clear_free(EC_GROUP *group)
140 {
7711de24
BM
141 if (!group) return;
142
0657bf9c
BM
143 if (group->meth->group_clear_finish != 0)
144 group->meth->group_clear_finish(group);
145 else if (group->meth != NULL && group->meth->group_finish != 0)
146 group->meth->group_finish(group);
df9cc153
BM
147
148 EC_GROUP_clear_free_extra_data(group);
149
b6db386f
BM
150 if (group->generator != NULL)
151 EC_POINT_clear_free(group->generator);
152 BN_clear_free(&group->order);
153 BN_clear_free(&group->cofactor);
154
458c2917
BM
155 if (group->seed)
156 {
157 memset(group->seed, 0, group->seed_len);
158 OPENSSL_free(group->seed);
159 }
160
c4b36ff4 161 memset(group, 0, sizeof *group);
0657bf9c
BM
162 OPENSSL_free(group);
163 }
164
165
166int EC_GROUP_copy(EC_GROUP *dest, const EC_GROUP *src)
167 {
168 if (dest->meth->group_copy == 0)
169 {
170 ECerr(EC_F_EC_GROUP_COPY, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
171 return 0;
172 }
173 if (dest->meth != src->meth)
174 {
175 ECerr(EC_F_EC_GROUP_COPY, EC_R_INCOMPATIBLE_OBJECTS);
176 return 0;
177 }
1d5bd6cf
BM
178 if (dest == src)
179 return 1;
0657bf9c 180
df9cc153
BM
181 EC_GROUP_clear_free_extra_data(dest);
182 if (src->extra_data_dup_func)
183 {
184 if (src->extra_data != NULL)
185 {
186 dest->extra_data = src->extra_data_dup_func(src->extra_data);
187 if (dest->extra_data == NULL)
188 return 0;
189 }
190
191 dest->extra_data_dup_func = src->extra_data_dup_func;
192 dest->extra_data_free_func = src->extra_data_free_func;
193 dest->extra_data_clear_free_func = src->extra_data_clear_free_func;
194 }
195
b6db386f
BM
196 if (src->generator != NULL)
197 {
198 if (dest->generator == NULL)
199 {
200 dest->generator = EC_POINT_new(dest);
201 if (dest->generator == NULL) return 0;
202 }
203 if (!EC_POINT_copy(dest->generator, src->generator)) return 0;
204 }
205 else
206 {
207 /* src->generator == NULL */
208 if (dest->generator != NULL)
209 {
210 EC_POINT_clear_free(dest->generator);
211 dest->generator = NULL;
212 }
213 }
214
215 if (!BN_copy(&dest->order, &src->order)) return 0;
216 if (!BN_copy(&dest->cofactor, &src->cofactor)) return 0;
217
254ef80d
BM
218 dest->curve_name = src->curve_name;
219 dest->asn1_flag = src->asn1_flag;
220 dest->asn1_form = src->asn1_form;
458c2917
BM
221
222 if (src->seed)
223 {
224 if (dest->seed)
225 OPENSSL_free(dest->seed);
226 dest->seed = OPENSSL_malloc(src->seed_len);
227 if (dest->seed == NULL)
228 return 0;
229 if (!memcpy(dest->seed, src->seed, src->seed_len))
230 return 0;
231 dest->seed_len = src->seed_len;
232 }
233 else
234 {
235 if (dest->seed)
236 OPENSSL_free(dest->seed);
237 dest->seed = NULL;
238 dest->seed_len = 0;
239 }
240
b6db386f 241
0657bf9c
BM
242 return dest->meth->group_copy(dest, src);
243 }
244
245
48fe4d62
BM
246const EC_METHOD *EC_GROUP_method_of(const EC_GROUP *group)
247 {
248 return group->meth;
249 }
250
251
458c2917
BM
252int EC_METHOD_get_field_type(const EC_METHOD *meth)
253 {
254 return meth->field_type;
255 }
256
257
b6db386f 258int EC_GROUP_set_generator(EC_GROUP *group, const EC_POINT *generator, const BIGNUM *order, const BIGNUM *cofactor)
bb62a8b0 259 {
b6db386f 260 if (generator == NULL)
bb62a8b0 261 {
b6db386f
BM
262 ECerr(EC_F_EC_GROUP_SET_GENERATOR, ERR_R_PASSED_NULL_PARAMETER);
263 return 0 ;
bb62a8b0 264 }
b6db386f
BM
265
266 if (group->generator == NULL)
267 {
268 group->generator = EC_POINT_new(group);
269 if (group->generator == NULL) return 0;
270 }
271 if (!EC_POINT_copy(group->generator, generator)) return 0;
272
273 if (order != NULL)
274 { if (!BN_copy(&group->order, order)) return 0; }
275 else
276 { if (!BN_zero(&group->order)) return 0; }
277
278 if (cofactor != NULL)
279 { if (!BN_copy(&group->cofactor, cofactor)) return 0; }
280 else
281 { if (!BN_zero(&group->cofactor)) return 0; }
282
283 return 1;
bb62a8b0
BM
284 }
285
286
b6db386f 287EC_POINT *EC_GROUP_get0_generator(const EC_GROUP *group)
bb62a8b0 288 {
b6db386f 289 return group->generator;
bb62a8b0
BM
290 }
291
292
b6db386f 293int EC_GROUP_get_order(const EC_GROUP *group, BIGNUM *order, BN_CTX *ctx)
0657bf9c 294 {
b6db386f 295 if (!BN_copy(order, &group->order))
0657bf9c 296 return 0;
b6db386f
BM
297
298 return !BN_is_zero(order);
0657bf9c
BM
299 }
300
301
b6db386f 302int EC_GROUP_get_cofactor(const EC_GROUP *group, BIGNUM *cofactor, BN_CTX *ctx)
48fe4d62 303 {
b6db386f 304 if (!BN_copy(cofactor, &group->cofactor))
48fe4d62 305 return 0;
b6db386f
BM
306
307 return !BN_is_zero(&group->cofactor);
48fe4d62
BM
308 }
309
310
b6db386f
BM
311void EC_GROUP_set_nid(EC_GROUP *group, int nid)
312 {
254ef80d 313 group->curve_name = nid;
b6db386f
BM
314 }
315
316
317int EC_GROUP_get_nid(const EC_GROUP *group)
318 {
254ef80d 319 return group->curve_name;
b6db386f
BM
320 }
321
322
458c2917
BM
323void EC_GROUP_set_asn1_flag(EC_GROUP *group, int flag)
324 {
325 group->asn1_flag = flag;
326 }
327
328
329int EC_GROUP_get_asn1_flag(const EC_GROUP *group)
330 {
331 return group->asn1_flag;
332 }
333
334
254ef80d
BM
335void EC_GROUP_set_point_conversion_form(EC_GROUP *group,
336 point_conversion_form_t form)
337 {
338 group->asn1_form = form;
339 }
340
341
342point_conversion_form_t EC_GROUP_get_point_conversion_form(const EC_GROUP *group)
343 {
344 return group->asn1_form;
345 }
346
347
b6db386f 348int EC_GROUP_set_curve_GFp(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx)
48fe4d62 349 {
b6db386f 350 if (group->meth->group_set_curve_GFp == 0)
48fe4d62 351 {
b6db386f 352 ECerr(EC_F_EC_GROUP_SET_CURVE_GFP, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
48fe4d62
BM
353 return 0;
354 }
b6db386f 355 return group->meth->group_set_curve_GFp(group, p, a, b, ctx);
48fe4d62
BM
356 }
357
358
b6db386f 359int EC_GROUP_get_curve_GFp(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx)
48fe4d62 360 {
b6db386f 361 if (group->meth->group_get_curve_GFp == 0)
48fe4d62 362 {
b6db386f 363 ECerr(EC_F_EC_GROUP_GET_CURVE_GFP, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
48fe4d62
BM
364 return 0;
365 }
b6db386f 366 return group->meth->group_get_curve_GFp(group, p, a, b, ctx);
48fe4d62
BM
367 }
368
369
17d6bb81 370int EC_GROUP_check_discriminant(const EC_GROUP *group, BN_CTX *ctx)
af28dd6c 371 {
17d6bb81 372 if (group->meth->group_check_discriminant == 0)
af28dd6c 373 {
17d6bb81 374 ECerr(EC_F_EC_GROUP_CHECK_DISCRIMINANT, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
af28dd6c
BM
375 return 0;
376 }
17d6bb81 377 return group->meth->group_check_discriminant(group, ctx);
af28dd6c
BM
378 }
379
380
df9cc153
BM
381/* this has 'package' visibility */
382int EC_GROUP_set_extra_data(EC_GROUP *group, void *extra_data, void *(*extra_data_dup_func)(void *),
383 void (*extra_data_free_func)(void *), void (*extra_data_clear_free_func)(void *))
384 {
385 if ((group->extra_data != NULL)
386 || (group->extra_data_dup_func != 0)
387 || (group->extra_data_free_func != 0)
388 || (group->extra_data_clear_free_func != 0))
389 {
390 ECerr(EC_F_EC_GROUP_SET_EXTRA_DATA, EC_R_SLOT_FULL);
391 return 0;
392 }
393
394 group->extra_data = extra_data;
395 group->extra_data_dup_func = extra_data_dup_func;
396 group->extra_data_free_func = extra_data_free_func;
397 group->extra_data_clear_free_func = extra_data_clear_free_func;
398 return 1;
399 }
400
401
402/* this has 'package' visibility */
48fe4d62 403void *EC_GROUP_get_extra_data(const EC_GROUP *group, void *(*extra_data_dup_func)(void *),
df9cc153
BM
404 void (*extra_data_free_func)(void *), void (*extra_data_clear_free_func)(void *))
405 {
406 if ((group->extra_data_dup_func != extra_data_dup_func)
407 || (group->extra_data_free_func != extra_data_free_func)
408 || (group->extra_data_clear_free_func != extra_data_clear_free_func))
409 {
410 ECerr(EC_F_EC_GROUP_GET_EXTRA_DATA, EC_R_NO_SUCH_EXTRA_DATA);
411 return NULL;
412 }
413
414 return group->extra_data;
415 }
416
417
418/* this has 'package' visibility */
419void EC_GROUP_free_extra_data(EC_GROUP *group)
420 {
421 if (group->extra_data_free_func)
422 group->extra_data_free_func(group->extra_data);
423 group->extra_data = NULL;
424 group->extra_data_dup_func = 0;
425 group->extra_data_free_func = 0;
426 group->extra_data_clear_free_func = 0;
427 }
428
429
430/* this has 'package' visibility */
431void EC_GROUP_clear_free_extra_data(EC_GROUP *group)
432 {
433 if (group->extra_data_clear_free_func)
434 group->extra_data_clear_free_func(group->extra_data);
435 else if (group->extra_data_free_func)
436 group->extra_data_free_func(group->extra_data);
437 group->extra_data = NULL;
438 group->extra_data_dup_func = 0;
439 group->extra_data_free_func = 0;
440 group->extra_data_clear_free_func = 0;
441 }
442
0657bf9c
BM
443
444/* functions for EC_POINT objects */
445
446EC_POINT *EC_POINT_new(const EC_GROUP *group)
447 {
448 EC_POINT *ret;
449
450 if (group == NULL)
451 {
452 ECerr(EC_F_EC_POINT_NEW, ERR_R_PASSED_NULL_PARAMETER);
453 return NULL;
454 }
455 if (group->meth->point_init == 0)
456 {
457 ECerr(EC_F_EC_POINT_NEW, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
458 return NULL;
459 }
460
461 ret = OPENSSL_malloc(sizeof *ret);
462 if (ret == NULL)
463 {
464 ECerr(EC_F_EC_POINT_NEW, ERR_R_MALLOC_FAILURE);
465 return NULL;
466 }
467
468 ret->meth = group->meth;
469
470 if (!ret->meth->point_init(ret))
471 {
472 OPENSSL_free(ret);
473 return NULL;
474 }
475
476 return ret;
477 }
478
479
480void EC_POINT_free(EC_POINT *point)
481 {
7711de24
BM
482 if (!point) return;
483
0657bf9c
BM
484 if (point->meth->point_finish != 0)
485 point->meth->point_finish(point);
486 OPENSSL_free(point);
487 }
488
489
490void EC_POINT_clear_free(EC_POINT *point)
491 {
7711de24
BM
492 if (!point) return;
493
0657bf9c
BM
494 if (point->meth->point_clear_finish != 0)
495 point->meth->point_clear_finish(point);
496 else if (point->meth != NULL && point->meth->point_finish != 0)
497 point->meth->point_finish(point);
f418f8c1 498 memset(point, 0, sizeof *point);
0657bf9c
BM
499 OPENSSL_free(point);
500 }
501
502
503int EC_POINT_copy(EC_POINT *dest, const EC_POINT *src)
504 {
505 if (dest->meth->point_copy == 0)
506 {
507 ECerr(EC_F_EC_POINT_COPY, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
508 return 0;
509 }
510 if (dest->meth != src->meth)
511 {
512 ECerr(EC_F_EC_POINT_COPY, EC_R_INCOMPATIBLE_OBJECTS);
513 return 0;
514 }
91f29a38
BM
515 if (dest == src)
516 return 1;
0657bf9c
BM
517 return dest->meth->point_copy(dest, src);
518 }
519
520
48fe4d62
BM
521const EC_METHOD *EC_POINT_method_of(const EC_POINT *point)
522 {
523 return point->meth;
524 }
525
526
226cc7de
BM
527int EC_POINT_set_to_infinity(const EC_GROUP *group, EC_POINT *point)
528 {
529 if (group->meth->point_set_to_infinity == 0)
530 {
531 ECerr(EC_F_EC_POINT_SET_TO_INFINITY, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
532 return 0;
533 }
534 if (group->meth != point->meth)
535 {
536 ECerr(EC_F_EC_POINT_SET_TO_INFINITY, EC_R_INCOMPATIBLE_OBJECTS);
537 return 0;
538 }
539 return group->meth->point_set_to_infinity(group, point);
540 }
541
542
1d5bd6cf
BM
543int EC_POINT_set_Jprojective_coordinates_GFp(const EC_GROUP *group, EC_POINT *point,
544 const BIGNUM *x, const BIGNUM *y, const BIGNUM *z, BN_CTX *ctx)
545 {
546 if (group->meth->point_set_Jprojective_coordinates_GFp == 0)
547 {
548 ECerr(EC_F_EC_POINT_SET_JPROJECTIVE_COORDINATES_GFP, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
549 return 0;
550 }
551 if (group->meth != point->meth)
552 {
553 ECerr(EC_F_EC_POINT_SET_JPROJECTIVE_COORDINATES_GFP, EC_R_INCOMPATIBLE_OBJECTS);
554 return 0;
555 }
556 return group->meth->point_set_Jprojective_coordinates_GFp(group, point, x, y, z, ctx);
557 }
558
559
560int EC_POINT_get_Jprojective_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point,
561 BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *ctx)
562 {
563 if (group->meth->point_get_Jprojective_coordinates_GFp == 0)
564 {
565 ECerr(EC_F_EC_POINT_GET_JPROJECTIVE_COORDINATES_GFP, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
566 return 0;
567 }
568 if (group->meth != point->meth)
569 {
570 ECerr(EC_F_EC_POINT_GET_JPROJECTIVE_COORDINATES_GFP, EC_R_INCOMPATIBLE_OBJECTS);
571 return 0;
572 }
573 return group->meth->point_get_Jprojective_coordinates_GFp(group, point, x, y, z, ctx);
574 }
575
576
226cc7de
BM
577int EC_POINT_set_affine_coordinates_GFp(const EC_GROUP *group, EC_POINT *point,
578 const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx)
579 {
580 if (group->meth->point_set_affine_coordinates_GFp == 0)
581 {
582 ECerr(EC_F_EC_POINT_SET_AFFINE_COORDINATES_GFP, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
583 return 0;
584 }
585 if (group->meth != point->meth)
586 {
587 ECerr(EC_F_EC_POINT_SET_AFFINE_COORDINATES_GFP, EC_R_INCOMPATIBLE_OBJECTS);
588 return 0;
589 }
590 return group->meth->point_set_affine_coordinates_GFp(group, point, x, y, ctx);
591 }
592
593
594int EC_POINT_get_affine_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point,
595 BIGNUM *x, BIGNUM *y, BN_CTX *ctx)
596 {
597 if (group->meth->point_get_affine_coordinates_GFp == 0)
598 {
599 ECerr(EC_F_EC_POINT_GET_AFFINE_COORDINATES_GFP, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
600 return 0;
601 }
602 if (group->meth != point->meth)
603 {
604 ECerr(EC_F_EC_POINT_GET_AFFINE_COORDINATES_GFP, EC_R_INCOMPATIBLE_OBJECTS);
605 return 0;
606 }
607 return group->meth->point_get_affine_coordinates_GFp(group, point, x, y, ctx);
608 }
609
610
1d5bd6cf
BM
611int EC_POINT_set_compressed_coordinates_GFp(const EC_GROUP *group, EC_POINT *point,
612 const BIGNUM *x, int y_bit, BN_CTX *ctx)
613 {
614 if (group->meth->point_set_compressed_coordinates_GFp == 0)
615 {
616 ECerr(EC_F_EC_POINT_SET_COMPRESSED_COORDINATES_GFP, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
617 return 0;
618 }
619 if (group->meth != point->meth)
620 {
621 ECerr(EC_F_EC_POINT_SET_COMPRESSED_COORDINATES_GFP, EC_R_INCOMPATIBLE_OBJECTS);
622 return 0;
623 }
624 return group->meth->point_set_compressed_coordinates_GFp(group, point, x, y_bit, ctx);
625 }
0657bf9c
BM
626
627
628size_t EC_POINT_point2oct(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form,
629 unsigned char *buf, size_t len, BN_CTX *ctx)
630 {
631 if (group->meth->point2oct == 0)
632 {
633 ECerr(EC_F_EC_POINT_POINT2OCT, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
634 return 0;
635 }
636 if (group->meth != point->meth)
637 {
638 ECerr(EC_F_EC_POINT_POINT2OCT, EC_R_INCOMPATIBLE_OBJECTS);
639 return 0;
640 }
641 return group->meth->point2oct(group, point, form, buf, len, ctx);
642 }
643
644
645int EC_POINT_oct2point(const EC_GROUP *group, EC_POINT *point,
646 const unsigned char *buf, size_t len, BN_CTX *ctx)
647 {
648 if (group->meth->oct2point == 0)
649 {
650 ECerr(EC_F_EC_POINT_OCT2POINT, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
651 return 0;
652 }
653 if (group->meth != point->meth)
654 {
655 ECerr(EC_F_EC_POINT_OCT2POINT, EC_R_INCOMPATIBLE_OBJECTS);
656 return 0;
657 }
658 return group->meth->oct2point(group, point, buf, len, ctx);
659 }
660
661
662int EC_POINT_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx)
663 {
664 if (group->meth->add == 0)
665 {
666 ECerr(EC_F_EC_POINT_ADD, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
667 return 0;
668 }
669 if ((group->meth != r->meth) || (r->meth != a->meth) || (a->meth != b->meth))
670 {
671 ECerr(EC_F_EC_POINT_ADD, EC_R_INCOMPATIBLE_OBJECTS);
672 return 0;
673 }
674 return group->meth->add(group, r, a, b, ctx);
675 }
676
677
678int EC_POINT_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, BN_CTX *ctx)
679 {
680 if (group->meth->dbl == 0)
681 {
682 ECerr(EC_F_EC_POINT_DBL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
683 return 0;
684 }
685 if ((group->meth != r->meth) || (r->meth != a->meth))
686 {
687 ECerr(EC_F_EC_POINT_DBL, EC_R_INCOMPATIBLE_OBJECTS);
688 return 0;
689 }
690 return group->meth->dbl(group, r, a, ctx);
691 }
692
693
1d5bd6cf
BM
694int EC_POINT_invert(const EC_GROUP *group, EC_POINT *a, BN_CTX *ctx)
695 {
696 if (group->meth->dbl == 0)
697 {
698 ECerr(EC_F_EC_POINT_DBL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
699 return 0;
700 }
701 if (group->meth != a->meth)
702 {
703 ECerr(EC_F_EC_POINT_DBL, EC_R_INCOMPATIBLE_OBJECTS);
704 return 0;
705 }
706 return group->meth->invert(group, a, ctx);
707 }
708
709
0657bf9c
BM
710int EC_POINT_is_at_infinity(const EC_GROUP *group, const EC_POINT *point)
711 {
712 if (group->meth->is_at_infinity == 0)
713 {
714 ECerr(EC_F_EC_POINT_IS_AT_INFINITY, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
715 return 0;
716 }
717 if (group->meth != point->meth)
718 {
719 ECerr(EC_F_EC_POINT_IS_AT_INFINITY, EC_R_INCOMPATIBLE_OBJECTS);
720 return 0;
721 }
722 return group->meth->is_at_infinity(group, point);
723 }
724
725
726int EC_POINT_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx)
727 {
728 if (group->meth->is_on_curve == 0)
729 {
730 ECerr(EC_F_EC_POINT_IS_ON_CURVE, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
731 return 0;
732 }
733 if (group->meth != point->meth)
734 {
735 ECerr(EC_F_EC_POINT_IS_ON_CURVE, EC_R_INCOMPATIBLE_OBJECTS);
736 return 0;
737 }
738 return group->meth->is_on_curve(group, point, ctx);
739 }
740
741
1d5bd6cf
BM
742int EC_POINT_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx)
743 {
744 if (group->meth->point_cmp == 0)
745 {
746 ECerr(EC_F_EC_POINT_CMP, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
747 return 0;
748 }
749 if ((group->meth != a->meth) || (a->meth != b->meth))
750 {
751 ECerr(EC_F_EC_POINT_CMP, EC_R_INCOMPATIBLE_OBJECTS);
752 return 0;
753 }
754 return group->meth->point_cmp(group, a, b, ctx);
755 }
756
757
e869d4bd 758int EC_POINT_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx)
0657bf9c
BM
759 {
760 if (group->meth->make_affine == 0)
761 {
762 ECerr(EC_F_EC_POINT_MAKE_AFFINE, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
763 return 0;
764 }
765 if (group->meth != point->meth)
766 {
767 ECerr(EC_F_EC_POINT_MAKE_AFFINE, EC_R_INCOMPATIBLE_OBJECTS);
768 return 0;
769 }
770 return group->meth->make_affine(group, point, ctx);
771 }
48fe4d62
BM
772
773
774int EC_POINTs_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx)
775 {
776 size_t i;
777
778 if (group->meth->points_make_affine == 0)
779 {
780 ECerr(EC_F_EC_POINTS_MAKE_AFFINE, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
781 return 0;
782 }
783 for (i = 0; i < num; i++)
784 {
785 if (group->meth != points[i]->meth)
786 {
787 ECerr(EC_F_EC_POINTS_MAKE_AFFINE, EC_R_INCOMPATIBLE_OBJECTS);
788 return 0;
789 }
790 }
791 return group->meth->points_make_affine(group, num, points, ctx);
792 }