Backport from HEAD:
[openssl.git] / crypto / ec / ec.h
1 /* crypto/ec/ec.h */
2 /*
3  * Originally written by Bodo Moeller for the OpenSSL project.
4  */
5 /**
6  * \file crypto/ec/ec.h Include file for the OpenSSL EC functions
7  * \author Originally written by Bodo Moeller for the OpenSSL project
8  */
9 /* ====================================================================
10  * Copyright (c) 1998-2005 The OpenSSL Project.  All rights reserved.
11  *
12  * Redistribution and use in source and binary forms, with or without
13  * modification, are permitted provided that the following conditions
14  * are met:
15  *
16  * 1. Redistributions of source code must retain the above copyright
17  *    notice, this list of conditions and the following disclaimer. 
18  *
19  * 2. Redistributions in binary form must reproduce the above copyright
20  *    notice, this list of conditions and the following disclaimer in
21  *    the documentation and/or other materials provided with the
22  *    distribution.
23  *
24  * 3. All advertising materials mentioning features or use of this
25  *    software must display the following acknowledgment:
26  *    "This product includes software developed by the OpenSSL Project
27  *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
28  *
29  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
30  *    endorse or promote products derived from this software without
31  *    prior written permission. For written permission, please contact
32  *    openssl-core@openssl.org.
33  *
34  * 5. Products derived from this software may not be called "OpenSSL"
35  *    nor may "OpenSSL" appear in their names without prior written
36  *    permission of the OpenSSL Project.
37  *
38  * 6. Redistributions of any form whatsoever must retain the following
39  *    acknowledgment:
40  *    "This product includes software developed by the OpenSSL Project
41  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
42  *
43  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
44  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
45  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
46  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
47  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
48  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
49  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
50  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
51  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
52  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
53  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
54  * OF THE POSSIBILITY OF SUCH DAMAGE.
55  * ====================================================================
56  *
57  * This product includes cryptographic software written by Eric Young
58  * (eay@cryptsoft.com).  This product includes software written by Tim
59  * Hudson (tjh@cryptsoft.com).
60  *
61  */
62 /* ====================================================================
63  * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
64  *
65  * Portions of the attached software ("Contribution") are developed by 
66  * SUN MICROSYSTEMS, INC., and are contributed to the OpenSSL project.
67  *
68  * The Contribution is licensed pursuant to the OpenSSL open source
69  * license provided above.
70  *
71  * The elliptic curve binary polynomial software is originally written by 
72  * Sheueling Chang Shantz and Douglas Stebila of Sun Microsystems Laboratories.
73  *
74  */
75
76 #ifndef HEADER_EC_H
77 #define HEADER_EC_H
78
79 #include <openssl/opensslconf.h>
80
81 #ifdef OPENSSL_NO_EC
82 #error EC is disabled.
83 #endif
84
85 #include <openssl/asn1.h>
86 #include <openssl/symhacks.h>
87 #ifndef OPENSSL_NO_DEPRECATED
88 #include <openssl/bn.h>
89 #endif
90
91 #ifdef  __cplusplus
92 extern "C" {
93 #elif defined(__SUNPRO_C)
94 # if __SUNPRO_C >= 0x520
95 # pragma error_messages (off,E_ARRAY_OF_INCOMPLETE_NONAME,E_ARRAY_OF_INCOMPLETE)
96 # endif
97 #endif
98
99   
100 #ifndef OPENSSL_ECC_MAX_FIELD_BITS
101 # define OPENSSL_ECC_MAX_FIELD_BITS 661
102 #endif
103
104 /** Enum for the point conversion form as defined in X9.62 (ECDSA)
105  *  for the encoding of a elliptic curve point (x,y) */
106 typedef enum {
107         /** the point is encoded as z||x, where the octet z specifies 
108          *  which solution of the quadratic equation y is  */
109         POINT_CONVERSION_COMPRESSED = 2,
110         /** the point is encoded as z||x||y, where z is the octet 0x02  */
111         POINT_CONVERSION_UNCOMPRESSED = 4,
112         /** the point is encoded as z||x||y, where the octet z specifies
113          *  which solution of the quadratic equation y is  */
114         POINT_CONVERSION_HYBRID = 6
115 } point_conversion_form_t;
116
117
118 typedef struct ec_method_st EC_METHOD;
119
120 typedef struct ec_group_st
121         /*
122          EC_METHOD *meth;
123          -- field definition
124          -- curve coefficients
125          -- optional generator with associated information (order, cofactor)
126          -- optional extra data (precomputed table for fast computation of multiples of generator)
127          -- ASN1 stuff
128         */
129         EC_GROUP;
130
131 typedef struct ec_point_st EC_POINT;
132
133
134 /********************************************************************/
135 /*               EC_METHODs for curves over GF(p)                   */       
136 /********************************************************************/
137
138 /** Returns the basic GFp ec methods which provides the basis for the
139  *  optimized methods. 
140  *  \return  EC_METHOD object
141  */
142 const EC_METHOD *EC_GFp_simple_method(void);
143
144 /** Returns GFp methods using montgomery multiplication.
145  *  \return  EC_METHOD object
146  */
147 const EC_METHOD *EC_GFp_mont_method(void);
148
149 /** Returns GFp methods using optimized methods for NIST recommended curves
150  *  \return  EC_METHOD object
151  */
152 const EC_METHOD *EC_GFp_nist_method(void);
153
154 #ifndef OPENSSL_NO_EC_NISTP224_64_GCC_128
155 /** Returns 64-bit optimized methods for nistp224
156  *  \return  EC_METHOD object
157  */
158 const EC_METHOD *EC_GFp_nistp224_method(void);
159 #endif
160
161 #ifndef OPENSSL_NO_EC2M
162 /********************************************************************/ 
163 /*           EC_METHOD for curves over GF(2^m)                      */
164 /********************************************************************/
165
166 /** Returns the basic GF2m ec method 
167  *  \return  EC_METHOD object
168  */
169 const EC_METHOD *EC_GF2m_simple_method(void);
170
171 #endif
172
173
174 /********************************************************************/
175 /*                   EC_GROUP functions                             */
176 /********************************************************************/
177
178 /** Creates a new EC_GROUP object
179  *  \param   meth  EC_METHOD to use
180  *  \return  newly created EC_GROUP object or NULL in case of an error.
181  */
182 EC_GROUP *EC_GROUP_new(const EC_METHOD *meth);
183
184 /** Frees a EC_GROUP object
185  *  \param  group  EC_GROUP object to be freed.
186  */
187 void EC_GROUP_free(EC_GROUP *group);
188
189 /** Clears and frees a EC_GROUP object
190  *  \param  group  EC_GROUP object to be cleared and freed.
191  */
192 void EC_GROUP_clear_free(EC_GROUP *group);
193
194 /** Copies EC_GROUP objects. Note: both EC_GROUPs must use the same EC_METHOD.
195  *  \param  dst  destination EC_GROUP object
196  *  \param  src  source EC_GROUP object
197  *  \return 1 on success and 0 if an error occurred.
198  */
199 int EC_GROUP_copy(EC_GROUP *dst, const EC_GROUP *src);
200
201 /** Creates a new EC_GROUP object and copies the copies the content
202  *  form src to the newly created EC_KEY object
203  *  \param  src  source EC_GROUP object
204  *  \return newly created EC_GROUP object or NULL in case of an error.
205  */
206 EC_GROUP *EC_GROUP_dup(const EC_GROUP *src);
207
208 /** Returns the EC_METHOD of the EC_GROUP object.
209  *  \param  group  EC_GROUP object 
210  *  \return EC_METHOD used in this EC_GROUP object.
211  */
212 const EC_METHOD *EC_GROUP_method_of(const EC_GROUP *group);
213
214 /** Returns the field type of the EC_METHOD.
215  *  \param  meth  EC_METHOD object
216  *  \return NID of the underlying field type OID.
217  */
218 int EC_METHOD_get_field_type(const EC_METHOD *meth);
219
220 /** Sets the generator and it's order/cofactor of a EC_GROUP object.
221  *  \param  group      EC_GROUP object 
222  *  \param  generator  EC_POINT object with the generator.
223  *  \param  order      the order of the group generated by the generator.
224  *  \param  cofactor   the index of the sub-group generated by the generator
225  *                     in the group of all points on the elliptic curve.
226  *  \return 1 on success and 0 if an error occured
227  */
228 int EC_GROUP_set_generator(EC_GROUP *group, const EC_POINT *generator, const BIGNUM *order, const BIGNUM *cofactor);
229
230 /** Returns the generator of a EC_GROUP object.
231  *  \param  group  EC_GROUP object
232  *  \return the currently used generator (possibly NULL).
233  */
234 const EC_POINT *EC_GROUP_get0_generator(const EC_GROUP *group);
235
236 /** Gets the order of a EC_GROUP
237  *  \param  group  EC_GROUP object
238  *  \param  order  BIGNUM to which the order is copied
239  *  \param  ctx    BN_CTX object (optional)
240  *  \return 1 on success and 0 if an error occured
241  */
242 int EC_GROUP_get_order(const EC_GROUP *group, BIGNUM *order, BN_CTX *ctx);
243
244 /** Gets the cofactor of a EC_GROUP
245  *  \param  group     EC_GROUP object
246  *  \param  cofactor  BIGNUM to which the cofactor is copied
247  *  \param  ctx       BN_CTX object (optional)
248  *  \return 1 on success and 0 if an error occured
249  */
250 int EC_GROUP_get_cofactor(const EC_GROUP *group, BIGNUM *cofactor, BN_CTX *ctx);
251
252 /** Sets the name of a EC_GROUP object
253  *  \param  group  EC_GROUP object
254  *  \param  nid    NID of the curve name OID
255  */
256 void EC_GROUP_set_curve_name(EC_GROUP *group, int nid);
257
258 /** Returns the curve name of a EC_GROUP object
259  *  \param  group  EC_GROUP object
260  *  \return NID of the curve name OID or 0 if not set.
261  */
262 int EC_GROUP_get_curve_name(const EC_GROUP *group);
263
264 void EC_GROUP_set_asn1_flag(EC_GROUP *group, int flag);
265 int EC_GROUP_get_asn1_flag(const EC_GROUP *group);
266
267 void EC_GROUP_set_point_conversion_form(EC_GROUP *, point_conversion_form_t);
268 point_conversion_form_t EC_GROUP_get_point_conversion_form(const EC_GROUP *);
269
270 unsigned char *EC_GROUP_get0_seed(const EC_GROUP *);
271 size_t EC_GROUP_get_seed_len(const EC_GROUP *);
272 size_t EC_GROUP_set_seed(EC_GROUP *, const unsigned char *, size_t len);
273
274 /** Sets the parameter of a ec over GFp defined by y^2 = x^3 + a*x + b
275  *  \param  group  EC_GROUP object
276  *  \param  p      BIGNUM with the prime number
277  *  \param  a      BIGNUM with parameter a of the equation
278  *  \param  b      BIGNUM with parameter b of the equation
279  *  \param  ctx    BN_CTX object (optional)
280  *  \return 1 on success and 0 if an error occured
281  */
282 int EC_GROUP_set_curve_GFp(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx);
283
284 /** Gets the parameter of the ec over GFp defined by y^2 = x^3 + a*x + b
285  *  \param  group  EC_GROUP object
286  *  \param  p      BIGNUM for the prime number
287  *  \param  a      BIGNUM for parameter a of the equation
288  *  \param  b      BIGNUM for parameter b of the equation
289  *  \param  ctx    BN_CTX object (optional)
290  *  \return 1 on success and 0 if an error occured
291  */
292 int EC_GROUP_get_curve_GFp(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx);
293
294 #ifndef OPENSSL_NO_EC2M
295 /** Sets the parameter of a ec over GF2m defined by y^2 + x*y = x^3 + a*x^2 + b
296  *  \param  group  EC_GROUP object
297  *  \param  p      BIGNUM with the polynomial defining the underlying field
298  *  \param  a      BIGNUM with parameter a of the equation
299  *  \param  b      BIGNUM with parameter b of the equation
300  *  \param  ctx    BN_CTX object (optional)
301  *  \return 1 on success and 0 if an error occured
302  */
303 int EC_GROUP_set_curve_GF2m(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx);
304
305 /** Gets the parameter of the ec over GF2m defined by y^2 + x*y = x^3 + a*x^2 + b
306  *  \param  group  EC_GROUP object
307  *  \param  p      BIGNUM for the polynomial defining the underlying field
308  *  \param  a      BIGNUM for parameter a of the equation
309  *  \param  b      BIGNUM for parameter b of the equation
310  *  \param  ctx    BN_CTX object (optional)
311  *  \return 1 on success and 0 if an error occured
312  */
313 int EC_GROUP_get_curve_GF2m(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx);
314 #endif
315 /** Returns the number of bits needed to represent a field element 
316  *  \param  group  EC_GROUP object
317  *  \return number of bits needed to represent a field element
318  */
319 int EC_GROUP_get_degree(const EC_GROUP *group);
320
321 /** Checks whether the parameter in the EC_GROUP define a valid ec group
322  *  \param  group  EC_GROUP object
323  *  \param  ctx    BN_CTX object (optional)
324  *  \return 1 if group is a valid ec group and 0 otherwise
325  */
326 int EC_GROUP_check(const EC_GROUP *group, BN_CTX *ctx);
327
328 /** Checks whether the discriminant of the elliptic curve is zero or not
329  *  \param  group  EC_GROUP object
330  *  \param  ctx    BN_CTX object (optional)
331  *  \return 1 if the discriminant is not zero and 0 otherwise
332  */
333 int EC_GROUP_check_discriminant(const EC_GROUP *group, BN_CTX *ctx);
334
335 /** Compares two EC_GROUP objects
336  *  \param  a    first EC_GROUP object
337  *  \param  b    second EC_GROUP object
338  *  \param  ctx  BN_CTX object (optional)
339  *  \return 0 if both groups are equal and 1 otherwise
340  */
341 int EC_GROUP_cmp(const EC_GROUP *a, const EC_GROUP *b, BN_CTX *ctx);
342
343 /* EC_GROUP_new_GF*() calls EC_GROUP_new() and EC_GROUP_set_GF*()
344  * after choosing an appropriate EC_METHOD */
345
346 /** Creates a new EC_GROUP object with the specified parameters defined
347  *  over GFp (defined by the equation y^2 = x^3 + a*x + b)
348  *  \param  p    BIGNUM with the prime number
349  *  \param  a    BIGNUM with the parameter a of the equation
350  *  \param  b    BIGNUM with the parameter b of the equation
351  *  \param  ctx  BN_CTX object (optional)
352  *  \return newly created EC_GROUP object with the specified parameters
353  */
354 EC_GROUP *EC_GROUP_new_curve_GFp(const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx);
355 #ifndef OPENSSL_NO_EC2M
356 /** Creates a new EC_GROUP object with the specified parameters defined
357  *  over GF2m (defined by the equation y^2 + x*y = x^3 + a*x^2 + b)
358  *  \param  p    BIGNUM with the polynomial defining the underlying field
359  *  \param  a    BIGNUM with the parameter a of the equation
360  *  \param  b    BIGNUM with the parameter b of the equation
361  *  \param  ctx  BN_CTX object (optional)
362  *  \return newly created EC_GROUP object with the specified parameters
363  */
364 EC_GROUP *EC_GROUP_new_curve_GF2m(const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx);
365 #endif
366 /** Creates a EC_GROUP object with a curve specified by a NID
367  *  \param  nid  NID of the OID of the curve name
368  *  \return newly created EC_GROUP object with specified curve or NULL
369  *          if an error occurred
370  */
371 EC_GROUP *EC_GROUP_new_by_curve_name(int nid);
372
373
374 /********************************************************************/
375 /*               handling of internal curves                        */
376 /********************************************************************/
377
378 typedef struct { 
379         int nid;
380         const char *comment;
381         } EC_builtin_curve;
382
383 /* EC_builtin_curves(EC_builtin_curve *r, size_t size) returns number 
384  * of all available curves or zero if a error occurred. 
385  * In case r ist not zero nitems EC_builtin_curve structures 
386  * are filled with the data of the first nitems internal groups */
387 size_t EC_get_builtin_curves(EC_builtin_curve *r, size_t nitems);
388
389
390 /********************************************************************/
391 /*                    EC_POINT functions                            */
392 /********************************************************************/
393
394 /** Creates a new EC_POINT object for the specified EC_GROUP
395  *  \param  group  EC_GROUP the underlying EC_GROUP object
396  *  \return newly created EC_POINT object or NULL if an error occurred
397  */
398 EC_POINT *EC_POINT_new(const EC_GROUP *group);
399
400 /** Frees a EC_POINT object
401  *  \param  point  EC_POINT object to be freed
402  */
403 void EC_POINT_free(EC_POINT *point);
404
405 /** Clears and frees a EC_POINT object
406  *  \param  point  EC_POINT object to be cleared and freed
407  */
408 void EC_POINT_clear_free(EC_POINT *point);
409
410 /** Copies EC_POINT object
411  *  \param  dst  destination EC_POINT object
412  *  \param  src  source EC_POINT object
413  *  \return 1 on success and 0 if an error occured
414  */
415 int EC_POINT_copy(EC_POINT *dst, const EC_POINT *src);
416
417 /** Creates a new EC_POINT object and copies the content of the supplied
418  *  EC_POINT
419  *  \param  src    source EC_POINT object
420  *  \param  group  underlying the EC_GROUP object
421  *  \return newly created EC_POINT object or NULL if an error occurred 
422  */
423 EC_POINT *EC_POINT_dup(const EC_POINT *src, const EC_GROUP *group);
424  
425 /** Returns the EC_METHOD used in EC_POINT object 
426  *  \param  point  EC_POINT object
427  *  \return the EC_METHOD used
428  */
429 const EC_METHOD *EC_POINT_method_of(const EC_POINT *point);
430
431 /** Sets a point to infinity (neutral element)
432  *  \param  group  underlying EC_GROUP object
433  *  \param  point  EC_POINT to set to infinity
434  *  \return 1 on success and 0 if an error occured
435  */
436 int EC_POINT_set_to_infinity(const EC_GROUP *group, EC_POINT *point);
437
438 /** Sets the jacobian projective coordinates of a EC_POINT over GFp
439  *  \param  group  underlying EC_GROUP object
440  *  \param  p      EC_POINT object
441  *  \param  x      BIGNUM with the x-coordinate
442  *  \param  y      BIGNUM with the y-coordinate
443  *  \param  z      BIGNUM with the z-coordinate
444  *  \param  ctx    BN_CTX object (optional)
445  *  \return 1 on success and 0 if an error occured
446  */
447 int EC_POINT_set_Jprojective_coordinates_GFp(const EC_GROUP *group, EC_POINT *p,
448         const BIGNUM *x, const BIGNUM *y, const BIGNUM *z, BN_CTX *ctx);
449
450 /** Gets the jacobian projective coordinates of a EC_POINT over GFp
451  *  \param  group  underlying EC_GROUP object
452  *  \param  p      EC_POINT object
453  *  \param  x      BIGNUM for the x-coordinate
454  *  \param  y      BIGNUM for the y-coordinate
455  *  \param  z      BIGNUM for the z-coordinate
456  *  \param  ctx    BN_CTX object (optional)
457  *  \return 1 on success and 0 if an error occured
458  */
459 int EC_POINT_get_Jprojective_coordinates_GFp(const EC_GROUP *group,
460         const EC_POINT *p, BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *ctx);
461
462 /** Sets the affine coordinates of a EC_POINT over GFp
463  *  \param  group  underlying EC_GROUP object
464  *  \param  p      EC_POINT object
465  *  \param  x      BIGNUM with the x-coordinate
466  *  \param  y      BIGNUM with the y-coordinate
467  *  \param  ctx    BN_CTX object (optional)
468  *  \return 1 on success and 0 if an error occured
469  */
470 int EC_POINT_set_affine_coordinates_GFp(const EC_GROUP *group, EC_POINT *p,
471         const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx);
472
473 /** Gets the affine coordinates of a EC_POINT over GFp
474  *  \param  group  underlying EC_GROUP object
475  *  \param  p      EC_POINT object
476  *  \param  x      BIGNUM for the x-coordinate
477  *  \param  y      BIGNUM for the y-coordinate
478  *  \param  ctx    BN_CTX object (optional)
479  *  \return 1 on success and 0 if an error occured
480  */
481 int EC_POINT_get_affine_coordinates_GFp(const EC_GROUP *group,
482         const EC_POINT *p, BIGNUM *x, BIGNUM *y, BN_CTX *ctx);
483
484 /** Sets the x9.62 compressed coordinates of a EC_POINT over GFp
485  *  \param  group  underlying EC_GROUP object
486  *  \param  p      EC_POINT object
487  *  \param  x      BIGNUM with x-coordinate
488  *  \param  y_bit  integer with the y-Bit (either 0 or 1)
489  *  \param  ctx    BN_CTX object (optional)
490  *  \return 1 on success and 0 if an error occured
491  */
492 int EC_POINT_set_compressed_coordinates_GFp(const EC_GROUP *group, EC_POINT *p,
493         const BIGNUM *x, int y_bit, BN_CTX *ctx);
494 #ifndef OPENSSL_NO_EC2M
495 /** Sets the affine coordinates of a EC_POINT over GF2m
496  *  \param  group  underlying EC_GROUP object
497  *  \param  p      EC_POINT object
498  *  \param  x      BIGNUM with the x-coordinate
499  *  \param  y      BIGNUM with the y-coordinate
500  *  \param  ctx    BN_CTX object (optional)
501  *  \return 1 on success and 0 if an error occured
502  */
503 int EC_POINT_set_affine_coordinates_GF2m(const EC_GROUP *group, EC_POINT *p,
504         const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx);
505
506 /** Gets the affine coordinates of a EC_POINT over GF2m
507  *  \param  group  underlying EC_GROUP object
508  *  \param  p      EC_POINT object
509  *  \param  x      BIGNUM for the x-coordinate
510  *  \param  y      BIGNUM for the y-coordinate
511  *  \param  ctx    BN_CTX object (optional)
512  *  \return 1 on success and 0 if an error occured
513  */
514 int EC_POINT_get_affine_coordinates_GF2m(const EC_GROUP *group,
515         const EC_POINT *p, BIGNUM *x, BIGNUM *y, BN_CTX *ctx);
516
517 /** Sets the x9.62 compressed coordinates of a EC_POINT over GF2m
518  *  \param  group  underlying EC_GROUP object
519  *  \param  p      EC_POINT object
520  *  \param  x      BIGNUM with x-coordinate
521  *  \param  y_bit  integer with the y-Bit (either 0 or 1)
522  *  \param  ctx    BN_CTX object (optional)
523  *  \return 1 on success and 0 if an error occured
524  */
525 int EC_POINT_set_compressed_coordinates_GF2m(const EC_GROUP *group, EC_POINT *p,
526         const BIGNUM *x, int y_bit, BN_CTX *ctx);
527 #endif
528 /** Encodes a EC_POINT object to a octet string
529  *  \param  group  underlying EC_GROUP object
530  *  \param  p      EC_POINT object
531  *  \param  form   point conversion form
532  *  \param  buf    memory buffer for the result. If NULL the function returns
533  *                 required buffer size.
534  *  \param  len    length of the memory buffer
535  *  \param  ctx    BN_CTX object (optional)
536  *  \return the length of the encoded octet string or 0 if an error occurred
537  */
538 size_t EC_POINT_point2oct(const EC_GROUP *group, const EC_POINT *p,
539         point_conversion_form_t form,
540         unsigned char *buf, size_t len, BN_CTX *ctx);
541
542 /** Decodes a EC_POINT from a octet string
543  *  \param  group  underlying EC_GROUP object
544  *  \param  p      EC_POINT object
545  *  \param  buf    memory buffer with the encoded ec point
546  *  \param  len    length of the encoded ec point
547  *  \param  ctx    BN_CTX object (optional)
548  *  \return 1 on success and 0 if an error occured
549  */
550 int EC_POINT_oct2point(const EC_GROUP *group, EC_POINT *p,
551         const unsigned char *buf, size_t len, BN_CTX *ctx);
552
553 /* other interfaces to point2oct/oct2point: */
554 BIGNUM *EC_POINT_point2bn(const EC_GROUP *, const EC_POINT *,
555         point_conversion_form_t form, BIGNUM *, BN_CTX *);
556 EC_POINT *EC_POINT_bn2point(const EC_GROUP *, const BIGNUM *,
557         EC_POINT *, BN_CTX *);
558 char *EC_POINT_point2hex(const EC_GROUP *, const EC_POINT *,
559         point_conversion_form_t form, BN_CTX *);
560 EC_POINT *EC_POINT_hex2point(const EC_GROUP *, const char *,
561         EC_POINT *, BN_CTX *);
562
563
564 /********************************************************************/
565 /*         functions for doing EC_POINT arithmetic                  */
566 /********************************************************************/
567
568 /** Computes the sum of two EC_POINT 
569  *  \param  group  underlying EC_GROUP object
570  *  \param  r      EC_POINT object for the result (r = a + b)
571  *  \param  a      EC_POINT object with the first summand
572  *  \param  b      EC_POINT object with the second summand
573  *  \param  ctx    BN_CTX object (optional)
574  *  \return 1 on success and 0 if an error occured
575  */
576 int EC_POINT_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx);
577
578 /** Computes the double of a EC_POINT
579  *  \param  group  underlying EC_GROUP object
580  *  \param  r      EC_POINT object for the result (r = 2 * a)
581  *  \param  a      EC_POINT object 
582  *  \param  ctx    BN_CTX object (optional)
583  *  \return 1 on success and 0 if an error occured
584  */
585 int EC_POINT_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, BN_CTX *ctx);
586
587 /** Computes the inverse of a EC_POINT
588  *  \param  group  underlying EC_GROUP object
589  *  \param  a      EC_POINT object to be inverted (it's used for the result as well)
590  *  \param  ctx    BN_CTX object (optional)
591  *  \return 1 on success and 0 if an error occured
592  */
593 int EC_POINT_invert(const EC_GROUP *group, EC_POINT *a, BN_CTX *ctx);
594
595 /** Checks whether the point is the neutral element of the group
596  *  \param  group  the underlying EC_GROUP object
597  *  \param  p      EC_POINT object
598  *  \return 1 if the point is the neutral element and 0 otherwise
599  */
600 int EC_POINT_is_at_infinity(const EC_GROUP *group, const EC_POINT *p);
601
602 /** Checks whether the point is on the curve 
603  *  \param  group  underlying EC_GROUP object
604  *  \param  point  EC_POINT object to check
605  *  \param  ctx    BN_CTX object (optional)
606  *  \return 1 if point if on the curve and 0 otherwise
607  */
608 int EC_POINT_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx);
609
610 /** Compares two EC_POINTs 
611  *  \param  group  underlying EC_GROUP object
612  *  \param  a      first EC_POINT object
613  *  \param  b      second EC_POINT object
614  *  \param  ctx    BN_CTX object (optional)
615  *  \return 0 if both points are equal and a value != 0 otherwise
616  */
617 int EC_POINT_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx);
618
619 int EC_POINT_make_affine(const EC_GROUP *, EC_POINT *, BN_CTX *);
620 int EC_POINTs_make_affine(const EC_GROUP *, size_t num, EC_POINT *[], BN_CTX *);
621
622 /** Computes r = generator * n sum_{i=0}^num p[i] * m[i]
623  *  \param  group  underlying EC_GROUP object
624  *  \param  r      EC_POINT object for the result
625  *  \param  n      BIGNUM with the multiplier for the group generator (optional)
626  *  \param  num    number futher summands
627  *  \param  p      array of size num of EC_POINT objects
628  *  \param  m      array of size num of BIGNUM objects
629  *  \param  ctx    BN_CTX object (optional)
630  *  \return 1 on success and 0 if an error occured
631  */
632 int EC_POINTs_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *n, size_t num, const EC_POINT *p[], const BIGNUM *m[], BN_CTX *ctx);
633
634 /** Computes r = generator * n + q * m
635  *  \param  group  underlying EC_GROUP object
636  *  \param  r      EC_POINT object for the result
637  *  \param  n      BIGNUM with the multiplier for the group generator (optional)
638  *  \param  q      EC_POINT object with the first factor of the second summand
639  *  \param  m      BIGNUM with the second factor of the second summand
640  *  \param  ctx    BN_CTX object (optional)
641  *  \return 1 on success and 0 if an error occured
642  */
643 int EC_POINT_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *n, const EC_POINT *q, const BIGNUM *m, BN_CTX *ctx);
644
645 /** Stores multiples of generator for faster point multiplication
646  *  \param  group  EC_GROUP object
647  *  \param  ctx    BN_CTX object (optional)
648  *  \return 1 on success and 0 if an error occured
649  */
650 int EC_GROUP_precompute_mult(EC_GROUP *group, BN_CTX *ctx);
651
652 /** Reports whether a precomputation has been done
653  *  \param  group  EC_GROUP object
654  *  \return 1 if a pre-computation has been done and 0 otherwise
655  */
656 int EC_GROUP_have_precompute_mult(const EC_GROUP *group);
657
658
659 /********************************************************************/
660 /*                       ASN1 stuff                                 */
661 /********************************************************************/
662
663 /* EC_GROUP_get_basis_type() returns the NID of the basis type
664  * used to represent the field elements */
665 int EC_GROUP_get_basis_type(const EC_GROUP *);
666 #ifndef OPENSSL_NO_EC2M
667 int EC_GROUP_get_trinomial_basis(const EC_GROUP *, unsigned int *k);
668 int EC_GROUP_get_pentanomial_basis(const EC_GROUP *, unsigned int *k1, 
669         unsigned int *k2, unsigned int *k3);
670 #endif
671
672 #define OPENSSL_EC_NAMED_CURVE  0x001
673
674 typedef struct ecpk_parameters_st ECPKPARAMETERS;
675
676 EC_GROUP *d2i_ECPKParameters(EC_GROUP **, const unsigned char **in, long len);
677 int i2d_ECPKParameters(const EC_GROUP *, unsigned char **out);
678
679 #define d2i_ECPKParameters_bio(bp,x) ASN1_d2i_bio_of(EC_GROUP,NULL,d2i_ECPKParameters,bp,x)
680 #define i2d_ECPKParameters_bio(bp,x) ASN1_i2d_bio_of_const(EC_GROUP,i2d_ECPKParameters,bp,x)
681 #define d2i_ECPKParameters_fp(fp,x) (EC_GROUP *)ASN1_d2i_fp(NULL, \
682                 (char *(*)())d2i_ECPKParameters,(fp),(unsigned char **)(x))
683 #define i2d_ECPKParameters_fp(fp,x) ASN1_i2d_fp(i2d_ECPKParameters,(fp), \
684                 (unsigned char *)(x))
685
686 #ifndef OPENSSL_NO_BIO
687 int     ECPKParameters_print(BIO *bp, const EC_GROUP *x, int off);
688 #endif
689 #ifndef OPENSSL_NO_FP_API
690 int     ECPKParameters_print_fp(FILE *fp, const EC_GROUP *x, int off);
691 #endif
692
693
694 /********************************************************************/
695 /*                      EC_KEY functions                            */
696 /********************************************************************/
697
698 typedef struct ec_key_st EC_KEY;
699
700 /* some values for the encoding_flag */
701 #define EC_PKEY_NO_PARAMETERS   0x001
702 #define EC_PKEY_NO_PUBKEY       0x002
703
704 /** Creates a new EC_KEY object.
705  *  \return EC_KEY object or NULL if an error occurred.
706  */
707 EC_KEY *EC_KEY_new(void);
708
709 /** Creates a new EC_KEY object using a named curve as underlying
710  *  EC_GROUP object.
711  *  \param  nid  NID of the named curve.
712  *  \return EC_KEY object or NULL if an error occurred. 
713  */
714 EC_KEY *EC_KEY_new_by_curve_name(int nid);
715
716 /** Frees a EC_KEY object.
717  *  \param  key  EC_KEY object to be freed.
718  */
719 void EC_KEY_free(EC_KEY *key);
720
721 /** Copies a EC_KEY object.
722  *  \param  dst  destination EC_KEY object
723  *  \param  src  src EC_KEY object
724  *  \return dst or NULL if an error occurred.
725  */
726 EC_KEY *EC_KEY_copy(EC_KEY *dst, const EC_KEY *src);
727
728 /** Creates a new EC_KEY object and copies the content from src to it.
729  *  \param  src  the source EC_KEY object
730  *  \return newly created EC_KEY object or NULL if an error occurred.
731  */
732 EC_KEY *EC_KEY_dup(const EC_KEY *src);
733
734 /** Increases the internal reference count of a EC_KEY object.
735  *  \param  key  EC_KEY object
736  *  \return 1 on success and 0 if an error occurred.
737  */
738 int EC_KEY_up_ref(EC_KEY *key);
739
740 /** Returns the EC_GROUP object of a EC_KEY object
741  *  \param  key  EC_KEY object
742  *  \return the EC_GROUP object (possibly NULL).
743  */
744 const EC_GROUP *EC_KEY_get0_group(const EC_KEY *key);
745
746 /** Sets the EC_GROUP of a EC_KEY object.
747  *  \param  key    EC_KEY object
748  *  \param  group  EC_GROUP to use in the EC_KEY object (note: the EC_KEY
749  *                 object will use an own copy of the EC_GROUP).
750  *  \return 1 on success and 0 if an error occurred.
751  */
752 int EC_KEY_set_group(EC_KEY *key, const EC_GROUP *group);
753
754 /** Returns the private key of a EC_KEY object.
755  *  \param  key  EC_KEY object
756  *  \return a BIGNUM with the private key (possibly NULL).
757  */
758 const BIGNUM *EC_KEY_get0_private_key(const EC_KEY *key);
759
760 /** Sets the private key of a EC_KEY object.
761  *  \param  key  EC_KEY object
762  *  \param  prv  BIGNUM with the private key (note: the EC_KEY object
763  *               will use an own copy of the BIGNUM).
764  *  \return 1 on success and 0 if an error occurred.
765  */
766 int EC_KEY_set_private_key(EC_KEY *key, const BIGNUM *prv);
767
768 /** Returns the public key of a EC_KEY object.
769  *  \param  key  the EC_KEY object
770  *  \return a EC_POINT object with the public key (possibly NULL)
771  */
772 const EC_POINT *EC_KEY_get0_public_key(const EC_KEY *key);
773
774 /** Sets the public key of a EC_KEY object.
775  *  \param  key  EC_KEY object
776  *  \param  pub  EC_POINT object with the public key (note: the EC_KEY object
777  *               will use an own copy of the EC_POINT object).
778  *  \return 1 on success and 0 if an error occurred.
779  */
780 int EC_KEY_set_public_key(EC_KEY *key, const EC_POINT *pub);
781
782 unsigned EC_KEY_get_enc_flags(const EC_KEY *key);
783 void EC_KEY_set_enc_flags(EC_KEY *, unsigned int);
784 point_conversion_form_t EC_KEY_get_conv_form(const EC_KEY *);
785 void EC_KEY_set_conv_form(EC_KEY *, point_conversion_form_t);
786 /* functions to set/get method specific data  */
787 void *EC_KEY_get_key_method_data(EC_KEY *, 
788         void *(*dup_func)(void *), void (*free_func)(void *), void (*clear_free_func)(void *));
789 void EC_KEY_insert_key_method_data(EC_KEY *, void *data,
790         void *(*dup_func)(void *), void (*free_func)(void *), void (*clear_free_func)(void *));
791 /* wrapper functions for the underlying EC_GROUP object */
792 void EC_KEY_set_asn1_flag(EC_KEY *, int);
793
794 /** Creates a table of pre-computed multiples of the generator to 
795  *  accelerate further EC_KEY operations.
796  *  \param  key  EC_KEY object
797  *  \param  ctx  BN_CTX object (optional)
798  *  \return 1 on success and 0 if an error occurred.
799  */
800 int EC_KEY_precompute_mult(EC_KEY *key, BN_CTX *ctx);
801
802 /** Creates a new ec private (and optional a new public) key.
803  *  \param  key  EC_KEY object
804  *  \return 1 on success and 0 if an error occurred.
805  */
806 int EC_KEY_generate_key(EC_KEY *key);
807
808 /** Verifies that a private and/or public key is valid.
809  *  \param  key  the EC_KEY object
810  *  \return 1 on success and 0 otherwise.
811  */
812 int EC_KEY_check_key(const EC_KEY *key);
813
814 /** Sets a public key from affine coordindates performing
815  *  neccessary NIST PKV tests.
816  *  \param  key  the EC_KEY object
817  *  \param  x    public key x coordinate
818  *  \param  y    public key y coordinate
819  *  \return 1 on success and 0 otherwise.
820  */
821 int EC_KEY_set_public_key_affine_coordinates(EC_KEY *key, BIGNUM *x, BIGNUM *y);
822
823
824 /********************************************************************/
825 /*        de- and encoding functions for SEC1 ECPrivateKey          */
826 /********************************************************************/
827
828 /** Decodes a private key from a memory buffer.
829  *  \param  key  a pointer to a EC_KEY object which should be used (or NULL)
830  *  \param  in   pointer to memory with the DER encoded private key
831  *  \param  len  length of the DER encoded private key
832  *  \return the decoded private key or NULL if an error occurred.
833  */
834 EC_KEY *d2i_ECPrivateKey(EC_KEY **key, const unsigned char **in, long len);
835
836 /** Encodes a private key object and stores the result in a buffer.
837  *  \param  key  the EC_KEY object to encode
838  *  \param  out  the buffer for the result (if NULL the function returns number
839  *               of bytes needed).
840  *  \return 1 on success and 0 if an error occurred.
841  */
842 int i2d_ECPrivateKey(EC_KEY *key, unsigned char **out);
843
844
845 /********************************************************************/
846 /*        de- and encoding functions for EC parameters              */
847 /********************************************************************/
848
849 /** Decodes ec parameter from a memory buffer.
850  *  \param  key  a pointer to a EC_KEY object which should be used (or NULL)
851  *  \param  in   pointer to memory with the DER encoded ec parameters
852  *  \param  len  length of the DER encoded ec parameters
853  *  \return a EC_KEY object with the decoded parameters or NULL if an error
854  *          occurred.
855  */
856 EC_KEY *d2i_ECParameters(EC_KEY **key, const unsigned char **in, long len);
857
858 /** Encodes ec parameter and stores the result in a buffer.
859  *  \param  key  the EC_KEY object with ec paramters to encode
860  *  \param  out  the buffer for the result (if NULL the function returns number
861  *               of bytes needed).
862  *  \return 1 on success and 0 if an error occurred.
863  */
864 int i2d_ECParameters(EC_KEY *key, unsigned char **out);
865
866
867 /********************************************************************/
868 /*         de- and encoding functions for EC public key             */
869 /*         (octet string, not DER -- hence 'o2i' and 'i2o')         */
870 /********************************************************************/
871
872 /** Decodes a ec public key from a octet string.
873  *  \param  key  a pointer to a EC_KEY object which should be used
874  *  \param  in   memory buffer with the encoded public key
875  *  \param  len  length of the encoded public key
876  *  \return EC_KEY object with decoded public key or NULL if an error
877  *          occurred.
878  */
879 EC_KEY *o2i_ECPublicKey(EC_KEY **key, const unsigned char **in, long len);
880
881 /** Encodes a ec public key in an octet string.
882  *  \param  key  the EC_KEY object with the public key
883  *  \param  out  the buffer for the result (if NULL the function returns number
884  *               of bytes needed).
885  *  \return 1 on success and 0 if an error occurred
886  */
887 int i2o_ECPublicKey(EC_KEY *key, unsigned char **out);
888
889 #ifndef OPENSSL_NO_BIO
890 /** Prints out the ec parameters on human readable form.
891  *  \param  bp   BIO object to which the information is printed
892  *  \param  key  EC_KEY object
893  *  \return 1 on success and 0 if an error occurred
894  */
895 int     ECParameters_print(BIO *bp, const EC_KEY *key);
896
897 /** Prints out the contents of a EC_KEY object
898  *  \param  bp   BIO object to which the information is printed
899  *  \param  key  EC_KEY object
900  *  \param  off  line offset 
901  *  \return 1 on success and 0 if an error occurred
902  */
903 int     EC_KEY_print(BIO *bp, const EC_KEY *key, int off);
904
905 #endif
906 #ifndef OPENSSL_NO_FP_API
907 /** Prints out the ec parameters on human readable form.
908  *  \param  fp   file descriptor to which the information is printed
909  *  \param  key  EC_KEY object
910  *  \return 1 on success and 0 if an error occurred
911  */
912 int     ECParameters_print_fp(FILE *fp, const EC_KEY *key);
913
914 /** Prints out the contents of a EC_KEY object
915  *  \param  fp   file descriptor to which the information is printed
916  *  \param  key  EC_KEY object
917  *  \param  off  line offset 
918  *  \return 1 on success and 0 if an error occurred
919  */
920 int     EC_KEY_print_fp(FILE *fp, const EC_KEY *key, int off);
921
922 #endif
923
924 #define ECParameters_dup(x) ASN1_dup_of(EC_KEY,i2d_ECParameters,d2i_ECParameters,x)
925
926 #ifndef __cplusplus
927 #if defined(__SUNPRO_C)
928 #  if __SUNPRO_C >= 0x520
929 # pragma error_messages (default,E_ARRAY_OF_INCOMPLETE_NONAME,E_ARRAY_OF_INCOMPLETE)
930 #  endif
931 # endif
932 #endif
933
934 #define EVP_PKEY_CTX_set_ec_paramgen_curve_nid(ctx, nid) \
935         EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_EC, EVP_PKEY_OP_PARAMGEN, \
936                                 EVP_PKEY_CTRL_EC_PARAMGEN_CURVE_NID, nid, NULL)
937
938
939 #define EVP_PKEY_CTRL_EC_PARAMGEN_CURVE_NID             (EVP_PKEY_ALG_CTRL + 1)
940
941 /* BEGIN ERROR CODES */
942 /* The following lines are auto generated by the script mkerr.pl. Any changes
943  * made after this point may be overwritten when the script is next run.
944  */
945 void ERR_load_EC_strings(void);
946
947 /* Error codes for the EC functions. */
948
949 /* Function codes. */
950 #define EC_F_BN_TO_FELEM                                 224
951 #define EC_F_COMPUTE_WNAF                                143
952 #define EC_F_D2I_ECPARAMETERS                            144
953 #define EC_F_D2I_ECPKPARAMETERS                          145
954 #define EC_F_D2I_ECPRIVATEKEY                            146
955 #define EC_F_DO_EC_KEY_PRINT                             221
956 #define EC_F_ECKEY_PARAM2TYPE                            223
957 #define EC_F_ECKEY_PARAM_DECODE                          212
958 #define EC_F_ECKEY_PRIV_DECODE                           213
959 #define EC_F_ECKEY_PRIV_ENCODE                           214
960 #define EC_F_ECKEY_PUB_DECODE                            215
961 #define EC_F_ECKEY_PUB_ENCODE                            216
962 #define EC_F_ECKEY_TYPE2PARAM                            220
963 #define EC_F_ECPARAMETERS_PRINT                          147
964 #define EC_F_ECPARAMETERS_PRINT_FP                       148
965 #define EC_F_ECPKPARAMETERS_PRINT                        149
966 #define EC_F_ECPKPARAMETERS_PRINT_FP                     150
967 #define EC_F_ECP_NIST_MOD_192                            203
968 #define EC_F_ECP_NIST_MOD_224                            204
969 #define EC_F_ECP_NIST_MOD_256                            205
970 #define EC_F_ECP_NIST_MOD_521                            206
971 #define EC_F_EC_ASN1_GROUP2CURVE                         153
972 #define EC_F_EC_ASN1_GROUP2FIELDID                       154
973 #define EC_F_EC_ASN1_GROUP2PARAMETERS                    155
974 #define EC_F_EC_ASN1_GROUP2PKPARAMETERS                  156
975 #define EC_F_EC_ASN1_PARAMETERS2GROUP                    157
976 #define EC_F_EC_ASN1_PKPARAMETERS2GROUP                  158
977 #define EC_F_EC_EX_DATA_SET_DATA                         211
978 #define EC_F_EC_GF2M_MONTGOMERY_POINT_MULTIPLY           208
979 #define EC_F_EC_GF2M_SIMPLE_GROUP_CHECK_DISCRIMINANT     159
980 #define EC_F_EC_GF2M_SIMPLE_GROUP_SET_CURVE              195
981 #define EC_F_EC_GF2M_SIMPLE_OCT2POINT                    160
982 #define EC_F_EC_GF2M_SIMPLE_POINT2OCT                    161
983 #define EC_F_EC_GF2M_SIMPLE_POINT_GET_AFFINE_COORDINATES 162
984 #define EC_F_EC_GF2M_SIMPLE_POINT_SET_AFFINE_COORDINATES 163
985 #define EC_F_EC_GF2M_SIMPLE_SET_COMPRESSED_COORDINATES   164
986 #define EC_F_EC_GFP_MONT_FIELD_DECODE                    133
987 #define EC_F_EC_GFP_MONT_FIELD_ENCODE                    134
988 #define EC_F_EC_GFP_MONT_FIELD_MUL                       131
989 #define EC_F_EC_GFP_MONT_FIELD_SET_TO_ONE                209
990 #define EC_F_EC_GFP_MONT_FIELD_SQR                       132
991 #define EC_F_EC_GFP_MONT_GROUP_SET_CURVE                 189
992 #define EC_F_EC_GFP_MONT_GROUP_SET_CURVE_GFP             135
993 #define EC_F_EC_GFP_NISTP224_GROUP_SET_CURVE             225
994 #define EC_F_EC_GFP_NISTP224_POINTS_MUL                  228
995 #define EC_F_EC_GFP_NISTP224_POINT_GET_AFFINE_COORDINATES 226
996 #define EC_F_EC_GFP_NIST_FIELD_MUL                       200
997 #define EC_F_EC_GFP_NIST_FIELD_SQR                       201
998 #define EC_F_EC_GFP_NIST_GROUP_SET_CURVE                 202
999 #define EC_F_EC_GFP_SIMPLE_GROUP_CHECK_DISCRIMINANT      165
1000 #define EC_F_EC_GFP_SIMPLE_GROUP_SET_CURVE               166
1001 #define EC_F_EC_GFP_SIMPLE_GROUP_SET_CURVE_GFP           100
1002 #define EC_F_EC_GFP_SIMPLE_GROUP_SET_GENERATOR           101
1003 #define EC_F_EC_GFP_SIMPLE_MAKE_AFFINE                   102
1004 #define EC_F_EC_GFP_SIMPLE_OCT2POINT                     103
1005 #define EC_F_EC_GFP_SIMPLE_POINT2OCT                     104
1006 #define EC_F_EC_GFP_SIMPLE_POINTS_MAKE_AFFINE            137
1007 #define EC_F_EC_GFP_SIMPLE_POINT_GET_AFFINE_COORDINATES  167
1008 #define EC_F_EC_GFP_SIMPLE_POINT_GET_AFFINE_COORDINATES_GFP 105
1009 #define EC_F_EC_GFP_SIMPLE_POINT_SET_AFFINE_COORDINATES  168
1010 #define EC_F_EC_GFP_SIMPLE_POINT_SET_AFFINE_COORDINATES_GFP 128
1011 #define EC_F_EC_GFP_SIMPLE_SET_COMPRESSED_COORDINATES    169
1012 #define EC_F_EC_GFP_SIMPLE_SET_COMPRESSED_COORDINATES_GFP 129
1013 #define EC_F_EC_GROUP_CHECK                              170
1014 #define EC_F_EC_GROUP_CHECK_DISCRIMINANT                 171
1015 #define EC_F_EC_GROUP_COPY                               106
1016 #define EC_F_EC_GROUP_GET0_GENERATOR                     139
1017 #define EC_F_EC_GROUP_GET_COFACTOR                       140
1018 #define EC_F_EC_GROUP_GET_CURVE_GF2M                     172
1019 #define EC_F_EC_GROUP_GET_CURVE_GFP                      130
1020 #define EC_F_EC_GROUP_GET_DEGREE                         173
1021 #define EC_F_EC_GROUP_GET_ORDER                          141
1022 #define EC_F_EC_GROUP_GET_PENTANOMIAL_BASIS              193
1023 #define EC_F_EC_GROUP_GET_TRINOMIAL_BASIS                194
1024 #define EC_F_EC_GROUP_NEW                                108
1025 #define EC_F_EC_GROUP_NEW_BY_CURVE_NAME                  174
1026 #define EC_F_EC_GROUP_NEW_FROM_DATA                      175
1027 #define EC_F_EC_GROUP_PRECOMPUTE_MULT                    142
1028 #define EC_F_EC_GROUP_SET_CURVE_GF2M                     176
1029 #define EC_F_EC_GROUP_SET_CURVE_GFP                      109
1030 #define EC_F_EC_GROUP_SET_EXTRA_DATA                     110
1031 #define EC_F_EC_GROUP_SET_GENERATOR                      111
1032 #define EC_F_EC_KEY_CHECK_KEY                            177
1033 #define EC_F_EC_KEY_COPY                                 178
1034 #define EC_F_EC_KEY_GENERATE_KEY                         179
1035 #define EC_F_EC_KEY_NEW                                  182
1036 #define EC_F_EC_KEY_PRINT                                180
1037 #define EC_F_EC_KEY_PRINT_FP                             181
1038 #define EC_F_EC_KEY_SET_PUBLIC_KEY_AFFINE_COORDINATES    229
1039 #define EC_F_EC_POINTS_MAKE_AFFINE                       136
1040 #define EC_F_EC_POINT_ADD                                112
1041 #define EC_F_EC_POINT_CMP                                113
1042 #define EC_F_EC_POINT_COPY                               114
1043 #define EC_F_EC_POINT_DBL                                115
1044 #define EC_F_EC_POINT_GET_AFFINE_COORDINATES_GF2M        183
1045 #define EC_F_EC_POINT_GET_AFFINE_COORDINATES_GFP         116
1046 #define EC_F_EC_POINT_GET_JPROJECTIVE_COORDINATES_GFP    117
1047 #define EC_F_EC_POINT_INVERT                             210
1048 #define EC_F_EC_POINT_IS_AT_INFINITY                     118
1049 #define EC_F_EC_POINT_IS_ON_CURVE                        119
1050 #define EC_F_EC_POINT_MAKE_AFFINE                        120
1051 #define EC_F_EC_POINT_MUL                                184
1052 #define EC_F_EC_POINT_NEW                                121
1053 #define EC_F_EC_POINT_OCT2POINT                          122
1054 #define EC_F_EC_POINT_POINT2OCT                          123
1055 #define EC_F_EC_POINT_SET_AFFINE_COORDINATES_GF2M        185
1056 #define EC_F_EC_POINT_SET_AFFINE_COORDINATES_GFP         124
1057 #define EC_F_EC_POINT_SET_COMPRESSED_COORDINATES_GF2M    186
1058 #define EC_F_EC_POINT_SET_COMPRESSED_COORDINATES_GFP     125
1059 #define EC_F_EC_POINT_SET_JPROJECTIVE_COORDINATES_GFP    126
1060 #define EC_F_EC_POINT_SET_TO_INFINITY                    127
1061 #define EC_F_EC_PRE_COMP_DUP                             207
1062 #define EC_F_EC_PRE_COMP_NEW                             196
1063 #define EC_F_EC_WNAF_MUL                                 187
1064 #define EC_F_EC_WNAF_PRECOMPUTE_MULT                     188
1065 #define EC_F_I2D_ECPARAMETERS                            190
1066 #define EC_F_I2D_ECPKPARAMETERS                          191
1067 #define EC_F_I2D_ECPRIVATEKEY                            192
1068 #define EC_F_I2O_ECPUBLICKEY                             151
1069 #define EC_F_NISTP224_PRE_COMP_NEW                       227
1070 #define EC_F_O2I_ECPUBLICKEY                             152
1071 #define EC_F_OLD_EC_PRIV_DECODE                          222
1072 #define EC_F_PKEY_EC_CTRL                                197
1073 #define EC_F_PKEY_EC_CTRL_STR                            198
1074 #define EC_F_PKEY_EC_DERIVE                              217
1075 #define EC_F_PKEY_EC_KEYGEN                              199
1076 #define EC_F_PKEY_EC_PARAMGEN                            219
1077 #define EC_F_PKEY_EC_SIGN                                218
1078
1079 /* Reason codes. */
1080 #define EC_R_ASN1_ERROR                                  115
1081 #define EC_R_ASN1_UNKNOWN_FIELD                          116
1082 #define EC_R_BIGNUM_OUT_OF_RANGE                         144
1083 #define EC_R_BUFFER_TOO_SMALL                            100
1084 #define EC_R_COORDINATES_OUT_OF_RANGE                    146
1085 #define EC_R_D2I_ECPKPARAMETERS_FAILURE                  117
1086 #define EC_R_DECODE_ERROR                                142
1087 #define EC_R_DISCRIMINANT_IS_ZERO                        118
1088 #define EC_R_EC_GROUP_NEW_BY_NAME_FAILURE                119
1089 #define EC_R_FIELD_TOO_LARGE                             143
1090 #define EC_R_GF2M_NOT_SUPPORTED                          147
1091 #define EC_R_GROUP2PKPARAMETERS_FAILURE                  120
1092 #define EC_R_I2D_ECPKPARAMETERS_FAILURE                  121
1093 #define EC_R_INCOMPATIBLE_OBJECTS                        101
1094 #define EC_R_INVALID_ARGUMENT                            112
1095 #define EC_R_INVALID_COMPRESSED_POINT                    110
1096 #define EC_R_INVALID_COMPRESSION_BIT                     109
1097 #define EC_R_INVALID_CURVE                               141
1098 #define EC_R_INVALID_DIGEST_TYPE                         138
1099 #define EC_R_INVALID_ENCODING                            102
1100 #define EC_R_INVALID_FIELD                               103
1101 #define EC_R_INVALID_FORM                                104
1102 #define EC_R_INVALID_GROUP_ORDER                         122
1103 #define EC_R_INVALID_PENTANOMIAL_BASIS                   132
1104 #define EC_R_INVALID_PRIVATE_KEY                         123
1105 #define EC_R_INVALID_TRINOMIAL_BASIS                     137
1106 #define EC_R_KEYS_NOT_SET                                140
1107 #define EC_R_MISSING_PARAMETERS                          124
1108 #define EC_R_MISSING_PRIVATE_KEY                         125
1109 #define EC_R_NOT_A_NIST_PRIME                            135
1110 #define EC_R_NOT_A_SUPPORTED_NIST_PRIME                  136
1111 #define EC_R_NOT_IMPLEMENTED                             126
1112 #define EC_R_NOT_INITIALIZED                             111
1113 #define EC_R_NO_FIELD_MOD                                133
1114 #define EC_R_NO_PARAMETERS_SET                           139
1115 #define EC_R_PASSED_NULL_PARAMETER                       134
1116 #define EC_R_PKPARAMETERS2GROUP_FAILURE                  127
1117 #define EC_R_POINT_AT_INFINITY                           106
1118 #define EC_R_POINT_IS_NOT_ON_CURVE                       107
1119 #define EC_R_SLOT_FULL                                   108
1120 #define EC_R_UNDEFINED_GENERATOR                         113
1121 #define EC_R_UNDEFINED_ORDER                             128
1122 #define EC_R_UNKNOWN_GROUP                               129
1123 #define EC_R_UNKNOWN_ORDER                               114
1124 #define EC_R_UNSUPPORTED_FIELD                           131
1125 #define EC_R_WRONG_CURVE_PARAMETERS                      145
1126 #define EC_R_WRONG_ORDER                                 130
1127
1128 #ifdef  __cplusplus
1129 }
1130 #endif
1131 #endif