ASN1 for binary curves
[openssl.git] / crypto / ec / ec_lib.c
1 /* crypto/ec/ec_lib.c */
2 /*
3  * Originally written by Bodo Moeller for the OpenSSL project.
4  */
5 /* ====================================================================
6  * Copyright (c) 1998-2002 The OpenSSL Project.  All rights reserved.
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  */
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  */
63
64 #include <string.h>
65
66 #include <openssl/err.h>
67 #include <openssl/opensslv.h>
68
69 #include "ec_lcl.h"
70
71 static const char EC_version[] = "EC" OPENSSL_VERSION_PTEXT;
72
73
74 /* functions for EC_GROUP objects */
75
76 EC_GROUP *EC_GROUP_new(const EC_METHOD *meth)
77         {
78         EC_GROUP *ret;
79
80         if (meth == NULL)
81                 {
82                 ECerr(EC_F_EC_GROUP_NEW, ERR_R_PASSED_NULL_PARAMETER);
83                 return NULL;
84                 }
85         if (meth->group_init == 0)
86                 {
87                 ECerr(EC_F_EC_GROUP_NEW, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
88                 return NULL;
89                 }
90
91         ret = OPENSSL_malloc(sizeof *ret);
92         if (ret == NULL)
93                 {
94                 ECerr(EC_F_EC_GROUP_NEW, ERR_R_MALLOC_FAILURE);
95                 return NULL;
96                 }
97
98         ret->meth = meth;
99
100         ret->extra_data = NULL;
101         ret->extra_data_dup_func = 0;
102         ret->extra_data_free_func = 0;
103         ret->extra_data_clear_free_func = 0;
104
105         ret->generator = NULL;
106         BN_init(&ret->order);
107         BN_init(&ret->cofactor);
108
109         ret->curve_name = 0;    
110         ret->asn1_flag  = 0;
111         ret->asn1_form  = POINT_CONVERSION_UNCOMPRESSED;
112
113         ret->seed = NULL;
114         ret->seed_len = 0;
115
116         if (!meth->group_init(ret))
117                 {
118                 OPENSSL_free(ret);
119                 return NULL;
120                 }
121         
122         return ret;
123         }
124
125
126 void EC_GROUP_free(EC_GROUP *group)
127         {
128         if (!group) return;
129
130         if (group->meth->group_finish != 0)
131                 group->meth->group_finish(group);
132
133         EC_GROUP_free_extra_data(group);
134
135         if (group->generator != NULL)
136                 EC_POINT_free(group->generator);
137         BN_free(&group->order);
138         BN_free(&group->cofactor);
139
140         if (group->seed)
141                 OPENSSL_free(group->seed);
142
143         OPENSSL_free(group);
144         }
145  
146
147 void EC_GROUP_clear_free(EC_GROUP *group)
148         {
149         if (!group) return;
150
151         if (group->meth->group_clear_finish != 0)
152                 group->meth->group_clear_finish(group);
153         else if (group->meth != NULL && group->meth->group_finish != 0)
154                 group->meth->group_finish(group);
155
156         EC_GROUP_clear_free_extra_data(group);
157
158         if (group->generator != NULL)
159                 EC_POINT_clear_free(group->generator);
160         BN_clear_free(&group->order);
161         BN_clear_free(&group->cofactor);
162
163         if (group->seed)
164                 {
165                 memset(group->seed, 0, group->seed_len);
166                 OPENSSL_free(group->seed);
167                 }
168
169         memset(group, 0, sizeof *group);
170         OPENSSL_free(group);
171         }
172
173
174 int EC_GROUP_copy(EC_GROUP *dest, const EC_GROUP *src)
175         {
176         if (dest->meth->group_copy == 0)
177                 {
178                 ECerr(EC_F_EC_GROUP_COPY, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
179                 return 0;
180                 }
181         if (dest->meth != src->meth)
182                 {
183                 ECerr(EC_F_EC_GROUP_COPY, EC_R_INCOMPATIBLE_OBJECTS);
184                 return 0;
185                 }
186         if (dest == src)
187                 return 1;
188         
189         EC_GROUP_clear_free_extra_data(dest);
190         if (src->extra_data_dup_func)
191                 {
192                 if (src->extra_data != NULL)
193                         {
194                         dest->extra_data = src->extra_data_dup_func(src->extra_data);
195                         if (dest->extra_data == NULL)
196                                 return 0;
197                         }
198
199                 dest->extra_data_dup_func = src->extra_data_dup_func;
200                 dest->extra_data_free_func = src->extra_data_free_func;
201                 dest->extra_data_clear_free_func = src->extra_data_clear_free_func;
202                 }
203
204         if (src->generator != NULL)
205                 {
206                 if (dest->generator == NULL)
207                         {
208                         dest->generator = EC_POINT_new(dest);
209                         if (dest->generator == NULL) return 0;
210                         }
211                 if (!EC_POINT_copy(dest->generator, src->generator)) return 0;
212                 }
213         else
214                 {
215                 /* src->generator == NULL */
216                 if (dest->generator != NULL)
217                         {
218                         EC_POINT_clear_free(dest->generator);
219                         dest->generator = NULL;
220                         }
221                 }
222
223         if (!BN_copy(&dest->order, &src->order)) return 0;
224         if (!BN_copy(&dest->cofactor, &src->cofactor)) return 0;
225
226         dest->curve_name = src->curve_name;
227         dest->asn1_flag  = src->asn1_flag;
228         dest->asn1_form  = src->asn1_form;
229
230         if (src->seed)
231                 {
232                 if (dest->seed)
233                         OPENSSL_free(dest->seed);
234                 dest->seed = OPENSSL_malloc(src->seed_len);
235                 if (dest->seed == NULL)
236                         return 0;
237                 if (!memcpy(dest->seed, src->seed, src->seed_len))
238                         return 0;
239                 dest->seed_len = src->seed_len;
240                 }
241         else
242                 {
243                 if (dest->seed)
244                         OPENSSL_free(dest->seed);
245                 dest->seed = NULL;
246                 dest->seed_len = 0;
247                 }
248         
249
250         return dest->meth->group_copy(dest, src);
251         }
252
253
254 EC_GROUP *EC_GROUP_dup(const EC_GROUP *a)
255         {
256         EC_GROUP *t = NULL;
257         int ok = 0;
258
259         if (a == NULL) return NULL;
260
261         if ((t = EC_GROUP_new(a->meth)) == NULL) return(NULL);
262         if (!EC_GROUP_copy(t, a)) goto err;
263
264         ok = 1;
265
266   err:  
267         if (!ok)
268                 {
269                 if (t) EC_GROUP_free(t);
270                 return NULL;
271                 }
272         else return t;
273         }
274
275
276 const EC_METHOD *EC_GROUP_method_of(const EC_GROUP *group)
277         {
278         return group->meth;
279         }
280
281
282 int EC_METHOD_get_field_type(const EC_METHOD *meth)
283         {
284         return meth->field_type;
285         }
286
287
288 int EC_GROUP_set_generator(EC_GROUP *group, const EC_POINT *generator, const BIGNUM *order, const BIGNUM *cofactor)
289         {
290         if (generator == NULL)
291                 {
292                 ECerr(EC_F_EC_GROUP_SET_GENERATOR, ERR_R_PASSED_NULL_PARAMETER);
293                 return 0   ;
294                 }
295
296         if (group->generator == NULL)
297                 {
298                 group->generator = EC_POINT_new(group);
299                 if (group->generator == NULL) return 0;
300                 }
301         if (!EC_POINT_copy(group->generator, generator)) return 0;
302
303         if (order != NULL)
304                 { if (!BN_copy(&group->order, order)) return 0; }       
305         else
306                 { if (!BN_zero(&group->order)) return 0; }      
307
308         if (cofactor != NULL)
309                 { if (!BN_copy(&group->cofactor, cofactor)) return 0; } 
310         else
311                 { if (!BN_zero(&group->cofactor)) return 0; }   
312
313         return 1;
314         }
315
316
317 EC_POINT *EC_GROUP_get0_generator(const EC_GROUP *group)
318         {
319         return group->generator;
320         }
321
322
323 int EC_GROUP_get_order(const EC_GROUP *group, BIGNUM *order, BN_CTX *ctx)
324         {
325         if (!BN_copy(order, &group->order))
326                 return 0;
327
328         return !BN_is_zero(order);
329         }
330
331
332 int EC_GROUP_get_cofactor(const EC_GROUP *group, BIGNUM *cofactor, BN_CTX *ctx)
333         {
334         if (!BN_copy(cofactor, &group->cofactor))
335                 return 0;
336
337         return !BN_is_zero(&group->cofactor);
338         }
339
340
341 void EC_GROUP_set_nid(EC_GROUP *group, int nid)
342         {
343         group->curve_name = nid;
344         }
345
346
347 int EC_GROUP_get_nid(const EC_GROUP *group)
348         {
349         return group->curve_name;
350         }
351
352
353 void EC_GROUP_set_asn1_flag(EC_GROUP *group, int flag)
354         {
355         group->asn1_flag = flag;
356         }
357
358
359 int EC_GROUP_get_asn1_flag(const EC_GROUP *group)
360         {
361         return group->asn1_flag;
362         }
363
364
365 void EC_GROUP_set_point_conversion_form(EC_GROUP *group, 
366                                         point_conversion_form_t form)
367         {
368         group->asn1_form = form;
369         }
370
371
372 point_conversion_form_t EC_GROUP_get_point_conversion_form(const EC_GROUP *group)
373         {
374         return group->asn1_form;
375         }
376
377
378 size_t EC_GROUP_set_seed(EC_GROUP *group, const unsigned char *p, size_t len)
379         {
380         if (group->seed)
381                 {
382                 OPENSSL_free(group->seed);
383                 group->seed = NULL;
384                 group->seed_len = 0;
385                 }
386
387         if (!len || !p)
388                 return 1;
389
390         if ((group->seed = OPENSSL_malloc(len)) == NULL)
391                 return 0;
392         memcpy(group->seed, p, len);
393         group->seed_len = len;
394
395         return len;
396         }
397
398
399 unsigned char *EC_GROUP_get0_seed(const EC_GROUP *group)
400         {
401         return group->seed;
402         }
403
404
405 size_t EC_GROUP_get_seed_len(const EC_GROUP *group)
406         {
407         return group->seed_len;
408         }
409
410
411 int EC_GROUP_set_curve_GFp(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx)
412         {
413         if (group->meth->group_set_curve == 0)
414                 {
415                 ECerr(EC_F_EC_GROUP_SET_CURVE_GFP, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
416                 return 0;
417                 }
418         return group->meth->group_set_curve(group, p, a, b, ctx);
419         }
420
421
422 int EC_GROUP_get_curve_GFp(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx)
423         {
424         if (group->meth->group_get_curve == 0)
425                 {
426                 ECerr(EC_F_EC_GROUP_GET_CURVE_GFP, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
427                 return 0;
428                 }
429         return group->meth->group_get_curve(group, p, a, b, ctx);
430         }
431
432
433 int EC_GROUP_set_curve_GF2m(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx)
434         {
435         if (group->meth->group_set_curve == 0)
436                 {
437                 ECerr(EC_F_EC_GROUP_SET_CURVE_GF2M, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
438                 return 0;
439                 }
440         return group->meth->group_set_curve(group, p, a, b, ctx);
441         }
442
443
444 int EC_GROUP_get_curve_GF2m(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx)
445         {
446         if (group->meth->group_get_curve == 0)
447                 {
448                 ECerr(EC_F_EC_GROUP_GET_CURVE_GF2M, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
449                 return 0;
450                 }
451         return group->meth->group_get_curve(group, p, a, b, ctx);
452         }
453
454
455 int EC_GROUP_get_degree(const EC_GROUP *group)
456         {
457         if (group->meth->group_get_degree == 0)
458                 {
459                 ECerr(EC_F_EC_GROUP_GET_DEGREE, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
460                 return 0;
461                 }
462         return group->meth->group_get_degree(group);
463         }
464
465
466 int EC_GROUP_check_discriminant(const EC_GROUP *group, BN_CTX *ctx)
467         {
468         if (group->meth->group_check_discriminant == 0)
469                 {
470                 ECerr(EC_F_EC_GROUP_CHECK_DISCRIMINANT, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
471                 return 0;
472                 }
473         return group->meth->group_check_discriminant(group, ctx);
474         }
475
476
477 /* this has 'package' visibility */
478 int EC_GROUP_set_extra_data(EC_GROUP *group, void *extra_data, void *(*extra_data_dup_func)(void *),
479         void (*extra_data_free_func)(void *), void (*extra_data_clear_free_func)(void *))
480         {
481         if ((group->extra_data != NULL)
482                 || (group->extra_data_dup_func != 0)
483                 || (group->extra_data_free_func != 0)
484                 || (group->extra_data_clear_free_func != 0))
485                 {
486                 ECerr(EC_F_EC_GROUP_SET_EXTRA_DATA, EC_R_SLOT_FULL);
487                 return 0;
488                 }
489
490         group->extra_data = extra_data;
491         group->extra_data_dup_func = extra_data_dup_func;
492         group->extra_data_free_func = extra_data_free_func;
493         group->extra_data_clear_free_func = extra_data_clear_free_func;
494         return 1;
495         }
496
497
498 /* this has 'package' visibility */
499 void *EC_GROUP_get_extra_data(const EC_GROUP *group, void *(*extra_data_dup_func)(void *),
500         void (*extra_data_free_func)(void *), void (*extra_data_clear_free_func)(void *))
501         {
502         if ((group->extra_data_dup_func != extra_data_dup_func)
503                 || (group->extra_data_free_func != extra_data_free_func)
504                 || (group->extra_data_clear_free_func != extra_data_clear_free_func))
505                 {
506                 ECerr(EC_F_EC_GROUP_GET_EXTRA_DATA, EC_R_NO_SUCH_EXTRA_DATA);
507                 return NULL;
508                 }
509
510         return group->extra_data;
511         }
512
513
514 /* this has 'package' visibility */
515 void EC_GROUP_free_extra_data(EC_GROUP *group)
516         {
517         if (group->extra_data_free_func)
518                 group->extra_data_free_func(group->extra_data);
519         group->extra_data = NULL;
520         group->extra_data_dup_func = 0;
521         group->extra_data_free_func = 0;
522         group->extra_data_clear_free_func = 0;
523         }
524
525
526 /* this has 'package' visibility */
527 void EC_GROUP_clear_free_extra_data(EC_GROUP *group)
528         {
529         if (group->extra_data_clear_free_func)
530                 group->extra_data_clear_free_func(group->extra_data);
531         else if (group->extra_data_free_func)
532                 group->extra_data_free_func(group->extra_data);
533         group->extra_data = NULL;
534         group->extra_data_dup_func = 0;
535         group->extra_data_free_func = 0;
536         group->extra_data_clear_free_func = 0;
537         }
538
539
540 int EC_GROUP_get_basis_type(const EC_GROUP *group, unsigned int *k1, 
541         unsigned int *k2, unsigned int *k3)
542         {
543         int i = 0;
544
545         if (group == NULL)
546                 return 0;
547
548         if (EC_METHOD_get_field_type(EC_GROUP_method_of(group)) !=
549                 NID_X9_62_characteristic_two_field)
550                 /* everything else is currently not supported */
551                 return 0;
552
553         while (group->poly[i] != 0)
554                 i++;
555
556         if (i == 4)
557                 {
558                 if (k1)
559                         *k1 = group->poly[3];
560                 if (k2)
561                         *k2 = group->poly[2];
562                 if (k3)
563                         *k3 = group->poly[1];
564
565                 return NID_X9_62_ppBasis;
566                 }
567         else if (i == 2)
568                 {
569                 if (k1)
570                         *k1 = group->poly[1];
571
572                 return NID_X9_62_tpBasis;
573                 }
574         else
575                 /* everything else is currently not supported */
576                 return 0;
577         }
578
579 /* functions for EC_POINT objects */
580
581 EC_POINT *EC_POINT_new(const EC_GROUP *group)
582         {
583         EC_POINT *ret;
584
585         if (group == NULL)
586                 {
587                 ECerr(EC_F_EC_POINT_NEW, ERR_R_PASSED_NULL_PARAMETER);
588                 return NULL;
589                 }
590         if (group->meth->point_init == 0)
591                 {
592                 ECerr(EC_F_EC_POINT_NEW, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
593                 return NULL;
594                 }
595
596         ret = OPENSSL_malloc(sizeof *ret);
597         if (ret == NULL)
598                 {
599                 ECerr(EC_F_EC_POINT_NEW, ERR_R_MALLOC_FAILURE);
600                 return NULL;
601                 }
602
603         ret->meth = group->meth;
604         
605         if (!ret->meth->point_init(ret))
606                 {
607                 OPENSSL_free(ret);
608                 return NULL;
609                 }
610         
611         return ret;
612         }
613
614
615 void EC_POINT_free(EC_POINT *point)
616         {
617         if (!point) return;
618
619         if (point->meth->point_finish != 0)
620                 point->meth->point_finish(point);
621         OPENSSL_free(point);
622         }
623  
624
625 void EC_POINT_clear_free(EC_POINT *point)
626         {
627         if (!point) return;
628
629         if (point->meth->point_clear_finish != 0)
630                 point->meth->point_clear_finish(point);
631         else if (point->meth != NULL && point->meth->point_finish != 0)
632                 point->meth->point_finish(point);
633         memset(point, 0, sizeof *point);
634         OPENSSL_free(point);
635         }
636
637
638 int EC_POINT_copy(EC_POINT *dest, const EC_POINT *src)
639         {
640         if (dest->meth->point_copy == 0)
641                 {
642                 ECerr(EC_F_EC_POINT_COPY, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
643                 return 0;
644                 }
645         if (dest->meth != src->meth)
646                 {
647                 ECerr(EC_F_EC_POINT_COPY, EC_R_INCOMPATIBLE_OBJECTS);
648                 return 0;
649                 }
650         if (dest == src)
651                 return 1;
652         return dest->meth->point_copy(dest, src);
653         }
654
655
656 EC_POINT *EC_POINT_dup(const EC_POINT *a, const EC_GROUP *group)
657         {
658         EC_POINT *t;
659         int r;
660
661         if (a == NULL) return NULL;
662
663         t = EC_POINT_new(group);
664         if (t == NULL) return(NULL);
665         r = EC_POINT_copy(t, a);
666         if (!r)
667                 {
668                 EC_POINT_free(t);
669                 return NULL;
670                 }
671         else return t;
672         }
673
674
675 const EC_METHOD *EC_POINT_method_of(const EC_POINT *point)
676         {
677         return point->meth;
678         }
679
680
681 int EC_POINT_set_to_infinity(const EC_GROUP *group, EC_POINT *point)
682         {
683         if (group->meth->point_set_to_infinity == 0)
684                 {
685                 ECerr(EC_F_EC_POINT_SET_TO_INFINITY, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
686                 return 0;
687                 }
688         if (group->meth != point->meth)
689                 {
690                 ECerr(EC_F_EC_POINT_SET_TO_INFINITY, EC_R_INCOMPATIBLE_OBJECTS);
691                 return 0;
692                 }
693         return group->meth->point_set_to_infinity(group, point);
694         }
695
696
697 int EC_POINT_set_Jprojective_coordinates_GFp(const EC_GROUP *group, EC_POINT *point,
698         const BIGNUM *x, const BIGNUM *y, const BIGNUM *z, BN_CTX *ctx)
699         {
700         if (group->meth->point_set_Jprojective_coordinates_GFp == 0)
701                 {
702                 ECerr(EC_F_EC_POINT_SET_JPROJECTIVE_COORDINATES_GFP, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
703                 return 0;
704                 }
705         if (group->meth != point->meth)
706                 {
707                 ECerr(EC_F_EC_POINT_SET_JPROJECTIVE_COORDINATES_GFP, EC_R_INCOMPATIBLE_OBJECTS);
708                 return 0;
709                 }
710         return group->meth->point_set_Jprojective_coordinates_GFp(group, point, x, y, z, ctx);
711         }
712
713
714 int EC_POINT_get_Jprojective_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point,
715         BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *ctx)
716         {
717         if (group->meth->point_get_Jprojective_coordinates_GFp == 0)
718                 {
719                 ECerr(EC_F_EC_POINT_GET_JPROJECTIVE_COORDINATES_GFP, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
720                 return 0;
721                 }
722         if (group->meth != point->meth)
723                 {
724                 ECerr(EC_F_EC_POINT_GET_JPROJECTIVE_COORDINATES_GFP, EC_R_INCOMPATIBLE_OBJECTS);
725                 return 0;
726                 }
727         return group->meth->point_get_Jprojective_coordinates_GFp(group, point, x, y, z, ctx);
728         }
729
730
731 int EC_POINT_set_affine_coordinates_GFp(const EC_GROUP *group, EC_POINT *point,
732         const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx)
733         {
734         if (group->meth->point_set_affine_coordinates == 0)
735                 {
736                 ECerr(EC_F_EC_POINT_SET_AFFINE_COORDINATES_GFP, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
737                 return 0;
738                 }
739         if (group->meth != point->meth)
740                 {
741                 ECerr(EC_F_EC_POINT_SET_AFFINE_COORDINATES_GFP, EC_R_INCOMPATIBLE_OBJECTS);
742                 return 0;
743                 }
744         return group->meth->point_set_affine_coordinates(group, point, x, y, ctx);
745         }
746
747
748 int EC_POINT_set_affine_coordinates_GF2m(const EC_GROUP *group, EC_POINT *point,
749         const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx)
750         {
751         if (group->meth->point_set_affine_coordinates == 0)
752                 {
753                 ECerr(EC_F_EC_POINT_SET_AFFINE_COORDINATES_GF2M, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
754                 return 0;
755                 }
756         if (group->meth != point->meth)
757                 {
758                 ECerr(EC_F_EC_POINT_SET_AFFINE_COORDINATES_GF2M, EC_R_INCOMPATIBLE_OBJECTS);
759                 return 0;
760                 }
761         return group->meth->point_set_affine_coordinates(group, point, x, y, ctx);
762         }
763
764
765 int EC_POINT_get_affine_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point,
766         BIGNUM *x, BIGNUM *y, BN_CTX *ctx)
767         {
768         if (group->meth->point_get_affine_coordinates == 0)
769                 {
770                 ECerr(EC_F_EC_POINT_GET_AFFINE_COORDINATES_GFP, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
771                 return 0;
772                 }
773         if (group->meth != point->meth)
774                 {
775                 ECerr(EC_F_EC_POINT_GET_AFFINE_COORDINATES_GFP, EC_R_INCOMPATIBLE_OBJECTS);
776                 return 0;
777                 }
778         return group->meth->point_get_affine_coordinates(group, point, x, y, ctx);
779         }
780
781
782 int EC_POINT_get_affine_coordinates_GF2m(const EC_GROUP *group, const EC_POINT *point,
783         BIGNUM *x, BIGNUM *y, BN_CTX *ctx)
784         {
785         if (group->meth->point_get_affine_coordinates == 0)
786                 {
787                 ECerr(EC_F_EC_POINT_GET_AFFINE_COORDINATES_GF2M, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
788                 return 0;
789                 }
790         if (group->meth != point->meth)
791                 {
792                 ECerr(EC_F_EC_POINT_GET_AFFINE_COORDINATES_GF2M, EC_R_INCOMPATIBLE_OBJECTS);
793                 return 0;
794                 }
795         return group->meth->point_get_affine_coordinates(group, point, x, y, ctx);
796         }
797
798
799 int EC_POINT_set_compressed_coordinates_GFp(const EC_GROUP *group, EC_POINT *point,
800         const BIGNUM *x, int y_bit, BN_CTX *ctx)
801         {
802         if (group->meth->point_set_compressed_coordinates == 0)
803                 {
804                 ECerr(EC_F_EC_POINT_SET_COMPRESSED_COORDINATES_GFP, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
805                 return 0;
806                 }
807         if (group->meth != point->meth)
808                 {
809                 ECerr(EC_F_EC_POINT_SET_COMPRESSED_COORDINATES_GFP, EC_R_INCOMPATIBLE_OBJECTS);
810                 return 0;
811                 }
812         return group->meth->point_set_compressed_coordinates(group, point, x, y_bit, ctx);
813         }
814
815
816 int EC_POINT_set_compressed_coordinates_GF2m(const EC_GROUP *group, EC_POINT *point,
817         const BIGNUM *x, int y_bit, BN_CTX *ctx)
818         {
819         if (group->meth->point_set_compressed_coordinates == 0)
820                 {
821                 ECerr(EC_F_EC_POINT_SET_COMPRESSED_COORDINATES_GF2M, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
822                 return 0;
823                 }
824         if (group->meth != point->meth)
825                 {
826                 ECerr(EC_F_EC_POINT_SET_COMPRESSED_COORDINATES_GF2M, EC_R_INCOMPATIBLE_OBJECTS);
827                 return 0;
828                 }
829         return group->meth->point_set_compressed_coordinates(group, point, x, y_bit, ctx);
830         }
831
832
833 size_t EC_POINT_point2oct(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form,
834         unsigned char *buf, size_t len, BN_CTX *ctx)
835         {
836         if (group->meth->point2oct == 0)
837                 {
838                 ECerr(EC_F_EC_POINT_POINT2OCT, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
839                 return 0;
840                 }
841         if (group->meth != point->meth)
842                 {
843                 ECerr(EC_F_EC_POINT_POINT2OCT, EC_R_INCOMPATIBLE_OBJECTS);
844                 return 0;
845                 }
846         return group->meth->point2oct(group, point, form, buf, len, ctx);
847         }
848
849
850 int EC_POINT_oct2point(const EC_GROUP *group, EC_POINT *point,
851         const unsigned char *buf, size_t len, BN_CTX *ctx)
852         {
853         if (group->meth->oct2point == 0)
854                 {
855                 ECerr(EC_F_EC_POINT_OCT2POINT, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
856                 return 0;
857                 }
858         if (group->meth != point->meth)
859                 {
860                 ECerr(EC_F_EC_POINT_OCT2POINT, EC_R_INCOMPATIBLE_OBJECTS);
861                 return 0;
862                 }
863         return group->meth->oct2point(group, point, buf, len, ctx);
864         }
865
866
867 int EC_POINT_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx)
868         {
869         if (group->meth->add == 0)
870                 {
871                 ECerr(EC_F_EC_POINT_ADD, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
872                 return 0;
873                 }
874         if ((group->meth != r->meth) || (r->meth != a->meth) || (a->meth != b->meth))
875                 {
876                 ECerr(EC_F_EC_POINT_ADD, EC_R_INCOMPATIBLE_OBJECTS);
877                 return 0;
878                 }
879         return group->meth->add(group, r, a, b, ctx);
880         }
881
882
883 int EC_POINT_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, BN_CTX *ctx)
884         {
885         if (group->meth->dbl == 0)
886                 {
887                 ECerr(EC_F_EC_POINT_DBL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
888                 return 0;
889                 }
890         if ((group->meth != r->meth) || (r->meth != a->meth))
891                 {
892                 ECerr(EC_F_EC_POINT_DBL, EC_R_INCOMPATIBLE_OBJECTS);
893                 return 0;
894                 }
895         return group->meth->dbl(group, r, a, ctx);
896         }
897
898
899 int EC_POINT_invert(const EC_GROUP *group, EC_POINT *a, BN_CTX *ctx)
900         {
901         if (group->meth->dbl == 0)
902                 {
903                 ECerr(EC_F_EC_POINT_DBL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
904                 return 0;
905                 }
906         if (group->meth != a->meth)
907                 {
908                 ECerr(EC_F_EC_POINT_DBL, EC_R_INCOMPATIBLE_OBJECTS);
909                 return 0;
910                 }
911         return group->meth->invert(group, a, ctx);
912         }
913
914
915 int EC_POINT_is_at_infinity(const EC_GROUP *group, const EC_POINT *point)
916         {
917         if (group->meth->is_at_infinity == 0)
918                 {
919                 ECerr(EC_F_EC_POINT_IS_AT_INFINITY, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
920                 return 0;
921                 }
922         if (group->meth != point->meth)
923                 {
924                 ECerr(EC_F_EC_POINT_IS_AT_INFINITY, EC_R_INCOMPATIBLE_OBJECTS);
925                 return 0;
926                 }
927         return group->meth->is_at_infinity(group, point);
928         }
929
930
931 int EC_POINT_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx)
932         {
933         if (group->meth->is_on_curve == 0)
934                 {
935                 ECerr(EC_F_EC_POINT_IS_ON_CURVE, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
936                 return 0;
937                 }
938         if (group->meth != point->meth)
939                 {
940                 ECerr(EC_F_EC_POINT_IS_ON_CURVE, EC_R_INCOMPATIBLE_OBJECTS);
941                 return 0;
942                 }
943         return group->meth->is_on_curve(group, point, ctx);
944         }
945
946
947 int EC_POINT_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx)
948         {
949         if (group->meth->point_cmp == 0)
950                 {
951                 ECerr(EC_F_EC_POINT_CMP, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
952                 return 0;
953                 }
954         if ((group->meth != a->meth) || (a->meth != b->meth))
955                 {
956                 ECerr(EC_F_EC_POINT_CMP, EC_R_INCOMPATIBLE_OBJECTS);
957                 return 0;
958                 }
959         return group->meth->point_cmp(group, a, b, ctx);
960         }
961
962
963 int EC_POINT_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx)
964         {
965         if (group->meth->make_affine == 0)
966                 {
967                 ECerr(EC_F_EC_POINT_MAKE_AFFINE, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
968                 return 0;
969                 }
970         if (group->meth != point->meth)
971                 {
972                 ECerr(EC_F_EC_POINT_MAKE_AFFINE, EC_R_INCOMPATIBLE_OBJECTS);
973                 return 0;
974                 }
975         return group->meth->make_affine(group, point, ctx);
976         }
977
978
979 int EC_POINTs_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx)
980         {
981         size_t i;
982
983         if (group->meth->points_make_affine == 0)
984                 {
985                 ECerr(EC_F_EC_POINTS_MAKE_AFFINE, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
986                 return 0;
987                 }
988         for (i = 0; i < num; i++)
989                 {
990                 if (group->meth != points[i]->meth)
991                         {
992                         ECerr(EC_F_EC_POINTS_MAKE_AFFINE, EC_R_INCOMPATIBLE_OBJECTS);
993                         return 0;
994                         }
995                 }
996         return group->meth->points_make_affine(group, num, points, ctx);
997         }