]> git.ipfire.org Git - thirdparty/openssl.git/blame - include/openssl/ec.h
Engage poly1305-sparcv9 module.
[thirdparty/openssl.git] / include / openssl / ec.h
CommitLineData
bd3602eb 1
65e81670 2/* crypto/ec/ec.h */
35b73a1f
BM
3/*
4 * Originally written by Bodo Moeller for the OpenSSL project.
5 */
ba12070f
NL
6/**
7 * \file crypto/ec/ec.h Include file for the OpenSSL EC functions
8 * \author Originally written by Bodo Moeller for the OpenSSL project
9 */
65e81670 10/* ====================================================================
ba12070f 11 * Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved.
6cc5e19d 12 *
65e81670
BM
13 * Redistribution and use in source and binary forms, with or without
14 * modification, are permitted provided that the following conditions
15 * are met:
6cc5e19d 16 *
65e81670 17 * 1. Redistributions of source code must retain the above copyright
0f113f3e 18 * notice, this list of conditions and the following disclaimer.
6cc5e19d 19 *
65e81670
BM
20 * 2. Redistributions in binary form must reproduce the above copyright
21 * notice, this list of conditions and the following disclaimer in
22 * the documentation and/or other materials provided with the
23 * distribution.
6cc5e19d 24 *
65e81670
BM
25 * 3. All advertising materials mentioning features or use of this
26 * software must display the following acknowledgment:
27 * "This product includes software developed by the OpenSSL Project
28 * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
29 *
30 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
31 * endorse or promote products derived from this software without
32 * prior written permission. For written permission, please contact
33 * openssl-core@openssl.org.
34 *
35 * 5. Products derived from this software may not be called "OpenSSL"
36 * nor may "OpenSSL" appear in their names without prior written
37 * permission of the OpenSSL Project.
38 *
39 * 6. Redistributions of any form whatsoever must retain the following
40 * acknowledgment:
41 * "This product includes software developed by the OpenSSL Project
42 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
43 *
44 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
45 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
46 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
47 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
48 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
49 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
50 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
51 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
52 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
53 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
54 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
55 * OF THE POSSIBILITY OF SUCH DAMAGE.
56 * ====================================================================
57 *
58 * This product includes cryptographic software written by Eric Young
59 * (eay@cryptsoft.com). This product includes software written by Tim
60 * Hudson (tjh@cryptsoft.com).
6cc5e19d
BM
61 *
62 */
7793f30e
BM
63/* ====================================================================
64 * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
65 *
0f113f3e 66 * Portions of the attached software ("Contribution") are developed by
7793f30e
BM
67 * SUN MICROSYSTEMS, INC., and are contributed to the OpenSSL project.
68 *
69 * The Contribution is licensed pursuant to the OpenSSL open source
70 * license provided above.
71 *
0f113f3e 72 * The elliptic curve binary polynomial software is originally written by
7793f30e
BM
73 * Sheueling Chang Shantz and Douglas Stebila of Sun Microsystems Laboratories.
74 *
75 */
6cc5e19d 76
6cc5e19d 77#ifndef HEADER_EC_H
0f113f3e 78# define HEADER_EC_H
6cc5e19d 79
0f113f3e 80# include <openssl/opensslconf.h>
87c9c659 81
0f113f3e
MC
82# ifdef OPENSSL_NO_EC
83# error EC is disabled.
84# endif
bb62a8b0 85
0f113f3e
MC
86# include <openssl/asn1.h>
87# include <openssl/symhacks.h>
98186eb4 88# if OPENSSL_API_COMPAT < 0x10100000L
0f113f3e
MC
89# include <openssl/bn.h>
90# endif
6cc5e19d 91
0f113f3e 92# ifdef __cplusplus
65e81670 93extern "C" {
0f113f3e
MC
94# elif defined(__SUNPRO_C)
95# if __SUNPRO_C >= 0x520
96# pragma error_messages (off,E_ARRAY_OF_INCOMPLETE_NONAME,E_ARRAY_OF_INCOMPLETE)
97# endif
7f24b1c3 98# endif
6cc5e19d 99
0f113f3e
MC
100# ifndef OPENSSL_ECC_MAX_FIELD_BITS
101# define OPENSSL_ECC_MAX_FIELD_BITS 661
102# endif
5e3225cc 103
ba12070f
NL
104/** Enum for the point conversion form as defined in X9.62 (ECDSA)
105 * for the encoding of a elliptic curve point (x,y) */
3a12ce01 106typedef enum {
0f113f3e 107 /** the point is encoded as z||x, where the octet z specifies
ba12070f 108 * which solution of the quadratic equation y is */
0f113f3e 109 POINT_CONVERSION_COMPRESSED = 2,
91d2728b 110 /** the point is encoded as z||x||y, where z is the octet 0x04 */
0f113f3e
MC
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
3a12ce01
BM
115} point_conversion_form_t;
116
3a12ce01
BM
117typedef struct ec_method_st EC_METHOD;
118
119typedef struct ec_group_st
50e735f9
MC
120 /*-
121 EC_METHOD *meth;
122 -- field definition
123 -- curve coefficients
124 -- optional generator with associated information (order, cofactor)
125 -- optional extra data (precomputed table for fast computation of multiples of generator)
126 -- ASN1 stuff
127 */
0f113f3e 128 EC_GROUP;
3a12ce01
BM
129
130typedef struct ec_point_st EC_POINT;
131
ba12070f 132/********************************************************************/
0f113f3e 133/* EC_METHODs for curves over GF(p) */
ba12070f
NL
134/********************************************************************/
135
136/** Returns the basic GFp ec methods which provides the basis for the
0f113f3e 137 * optimized methods.
ba12070f 138 * \return EC_METHOD object
3a12ce01 139 */
3a12ce01 140const EC_METHOD *EC_GFp_simple_method(void);
ba12070f
NL
141
142/** Returns GFp methods using montgomery multiplication.
143 * \return EC_METHOD object
144 */
3a12ce01 145const EC_METHOD *EC_GFp_mont_method(void);
ba12070f
NL
146
147/** Returns GFp methods using optimized methods for NIST recommended curves
148 * \return EC_METHOD object
149 */
5c6bf031 150const EC_METHOD *EC_GFp_nist_method(void);
3a12ce01 151
0f113f3e
MC
152# ifndef OPENSSL_NO_EC_NISTP_64_GCC_128
153# ifndef OPENSSL_SYS_WIN32
04daec86
BM
154/** Returns 64-bit optimized methods for nistp224
155 * \return EC_METHOD object
156 */
157const EC_METHOD *EC_GFp_nistp224_method(void);
3e00b4c9
BM
158
159/** Returns 64-bit optimized methods for nistp256
160 * \return EC_METHOD object
161 */
162const EC_METHOD *EC_GFp_nistp256_method(void);
163
164/** Returns 64-bit optimized methods for nistp521
165 * \return EC_METHOD object
166 */
167const EC_METHOD *EC_GFp_nistp521_method(void);
0f113f3e
MC
168# endif
169# endif
ba12070f 170
0f113f3e
MC
171# ifndef OPENSSL_NO_EC2M
172/********************************************************************/
ba12070f
NL
173/* EC_METHOD for curves over GF(2^m) */
174/********************************************************************/
175
0f113f3e 176/** Returns the basic GF2m ec method
ba12070f 177 * \return EC_METHOD object
7793f30e
BM
178 */
179const EC_METHOD *EC_GF2m_simple_method(void);
180
0f113f3e 181# endif
3a12ce01 182
ba12070f
NL
183/********************************************************************/
184/* EC_GROUP functions */
185/********************************************************************/
186
187/** Creates a new EC_GROUP object
188 * \param meth EC_METHOD to use
189 * \return newly created EC_GROUP object or NULL in case of an error.
190 */
191EC_GROUP *EC_GROUP_new(const EC_METHOD *meth);
192
193/** Frees a EC_GROUP object
194 * \param group EC_GROUP object to be freed.
195 */
196void EC_GROUP_free(EC_GROUP *group);
197
198/** Clears and frees a EC_GROUP object
199 * \param group EC_GROUP object to be cleared and freed.
200 */
201void EC_GROUP_clear_free(EC_GROUP *group);
202
203/** Copies EC_GROUP objects. Note: both EC_GROUPs must use the same EC_METHOD.
204 * \param dst destination EC_GROUP object
205 * \param src source EC_GROUP object
206 * \return 1 on success and 0 if an error occurred.
207 */
208int EC_GROUP_copy(EC_GROUP *dst, const EC_GROUP *src);
209
210/** Creates a new EC_GROUP object and copies the copies the content
211 * form src to the newly created EC_KEY object
212 * \param src source EC_GROUP object
213 * \return newly created EC_GROUP object or NULL in case of an error.
214 */
215EC_GROUP *EC_GROUP_dup(const EC_GROUP *src);
216
217/** Returns the EC_METHOD of the EC_GROUP object.
0f113f3e 218 * \param group EC_GROUP object
ba12070f
NL
219 * \return EC_METHOD used in this EC_GROUP object.
220 */
221const EC_METHOD *EC_GROUP_method_of(const EC_GROUP *group);
222
223/** Returns the field type of the EC_METHOD.
224 * \param meth EC_METHOD object
225 * \return NID of the underlying field type OID.
226 */
227int EC_METHOD_get_field_type(const EC_METHOD *meth);
228
229/** Sets the generator and it's order/cofactor of a EC_GROUP object.
0f113f3e 230 * \param group EC_GROUP object
ba12070f
NL
231 * \param generator EC_POINT object with the generator.
232 * \param order the order of the group generated by the generator.
233 * \param cofactor the index of the sub-group generated by the generator
234 * in the group of all points on the elliptic curve.
478b50cf 235 * \return 1 on success and 0 if an error occurred
ba12070f 236 */
0f113f3e
MC
237int EC_GROUP_set_generator(EC_GROUP *group, const EC_POINT *generator,
238 const BIGNUM *order, const BIGNUM *cofactor);
ba12070f
NL
239
240/** Returns the generator of a EC_GROUP object.
241 * \param group EC_GROUP object
242 * \return the currently used generator (possibly NULL).
243 */
244const EC_POINT *EC_GROUP_get0_generator(const EC_GROUP *group);
245
f54be179
AP
246/** Returns the montgomery data for order(Generator)
247 * \param group EC_GROUP object
248 * \return the currently used generator (possibly NULL).
249*/
250BN_MONT_CTX *EC_GROUP_get_mont_data(const EC_GROUP *group);
251
ba12070f
NL
252/** Gets the order of a EC_GROUP
253 * \param group EC_GROUP object
254 * \param order BIGNUM to which the order is copied
255 * \param ctx BN_CTX object (optional)
478b50cf 256 * \return 1 on success and 0 if an error occurred
ba12070f
NL
257 */
258int EC_GROUP_get_order(const EC_GROUP *group, BIGNUM *order, BN_CTX *ctx);
48fe4d62 259
ba12070f
NL
260/** Gets the cofactor of a EC_GROUP
261 * \param group EC_GROUP object
262 * \param cofactor BIGNUM to which the cofactor is copied
263 * \param ctx BN_CTX object (optional)
478b50cf 264 * \return 1 on success and 0 if an error occurred
ba12070f 265 */
0f113f3e
MC
266int EC_GROUP_get_cofactor(const EC_GROUP *group, BIGNUM *cofactor,
267 BN_CTX *ctx);
b6db386f 268
ba12070f
NL
269/** Sets the name of a EC_GROUP object
270 * \param group EC_GROUP object
271 * \param nid NID of the curve name OID
272 */
273void EC_GROUP_set_curve_name(EC_GROUP *group, int nid);
b6db386f 274
ba12070f
NL
275/** Returns the curve name of a EC_GROUP object
276 * \param group EC_GROUP object
277 * \return NID of the curve name OID or 0 if not set.
278 */
279int EC_GROUP_get_curve_name(const EC_GROUP *group);
945e15a2 280
ba12070f
NL
281void EC_GROUP_set_asn1_flag(EC_GROUP *group, int flag);
282int EC_GROUP_get_asn1_flag(const EC_GROUP *group);
5f3d6f70 283
0f113f3e
MC
284void EC_GROUP_set_point_conversion_form(EC_GROUP *group,
285 point_conversion_form_t form);
5f3d6f70
BM
286point_conversion_form_t EC_GROUP_get_point_conversion_form(const EC_GROUP *);
287
9945b460 288unsigned char *EC_GROUP_get0_seed(const EC_GROUP *x);
5f3d6f70
BM
289size_t EC_GROUP_get_seed_len(const EC_GROUP *);
290size_t EC_GROUP_set_seed(EC_GROUP *, const unsigned char *, size_t len);
48fe4d62 291
ba12070f
NL
292/** Sets the parameter of a ec over GFp defined by y^2 = x^3 + a*x + b
293 * \param group EC_GROUP object
294 * \param p BIGNUM with the prime number
295 * \param a BIGNUM with parameter a of the equation
296 * \param b BIGNUM with parameter b of the equation
297 * \param ctx BN_CTX object (optional)
478b50cf 298 * \return 1 on success and 0 if an error occurred
ba12070f 299 */
0f113f3e
MC
300int EC_GROUP_set_curve_GFp(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a,
301 const BIGNUM *b, BN_CTX *ctx);
ba12070f
NL
302
303/** Gets the parameter of the ec over GFp defined by y^2 = x^3 + a*x + b
304 * \param group EC_GROUP object
305 * \param p BIGNUM for the prime number
306 * \param a BIGNUM for parameter a of the equation
307 * \param b BIGNUM for parameter b of the equation
308 * \param ctx BN_CTX object (optional)
478b50cf 309 * \return 1 on success and 0 if an error occurred
ba12070f 310 */
0f113f3e
MC
311int EC_GROUP_get_curve_GFp(const EC_GROUP *group, BIGNUM *p, BIGNUM *a,
312 BIGNUM *b, BN_CTX *ctx);
ba12070f 313
0f113f3e 314# ifndef OPENSSL_NO_EC2M
ba12070f
NL
315/** Sets the parameter of a ec over GF2m defined by y^2 + x*y = x^3 + a*x^2 + b
316 * \param group EC_GROUP object
317 * \param p BIGNUM with the polynomial defining the underlying field
318 * \param a BIGNUM with parameter a of the equation
319 * \param b BIGNUM with parameter b of the equation
320 * \param ctx BN_CTX object (optional)
478b50cf 321 * \return 1 on success and 0 if an error occurred
ba12070f 322 */
0f113f3e
MC
323int EC_GROUP_set_curve_GF2m(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a,
324 const BIGNUM *b, BN_CTX *ctx);
ba12070f
NL
325
326/** Gets the parameter of the ec over GF2m defined by y^2 + x*y = x^3 + a*x^2 + b
327 * \param group EC_GROUP object
328 * \param p BIGNUM for the polynomial defining the underlying field
329 * \param a BIGNUM for parameter a of the equation
330 * \param b BIGNUM for parameter b of the equation
331 * \param ctx BN_CTX object (optional)
478b50cf 332 * \return 1 on success and 0 if an error occurred
ba12070f 333 */
0f113f3e
MC
334int EC_GROUP_get_curve_GF2m(const EC_GROUP *group, BIGNUM *p, BIGNUM *a,
335 BIGNUM *b, BN_CTX *ctx);
336# endif
337/** Returns the number of bits needed to represent a field element
ba12070f
NL
338 * \param group EC_GROUP object
339 * \return number of bits needed to represent a field element
340 */
341int EC_GROUP_get_degree(const EC_GROUP *group);
3a12ce01 342
ba12070f
NL
343/** Checks whether the parameter in the EC_GROUP define a valid ec group
344 * \param group EC_GROUP object
345 * \param ctx BN_CTX object (optional)
346 * \return 1 if group is a valid ec group and 0 otherwise
347 */
af28dd6c 348int EC_GROUP_check(const EC_GROUP *group, BN_CTX *ctx);
945e15a2 349
ba12070f
NL
350/** Checks whether the discriminant of the elliptic curve is zero or not
351 * \param group EC_GROUP object
352 * \param ctx BN_CTX object (optional)
353 * \return 1 if the discriminant is not zero and 0 otherwise
354 */
355int EC_GROUP_check_discriminant(const EC_GROUP *group, BN_CTX *ctx);
356
357/** Compares two EC_GROUP objects
358 * \param a first EC_GROUP object
359 * \param b second EC_GROUP object
360 * \param ctx BN_CTX object (optional)
361 * \return 0 if both groups are equal and 1 otherwise
362 */
363int EC_GROUP_cmp(const EC_GROUP *a, const EC_GROUP *b, BN_CTX *ctx);
ada0e717 364
0f113f3e
MC
365/*
366 * EC_GROUP_new_GF*() calls EC_GROUP_new() and EC_GROUP_set_GF*() after
367 * choosing an appropriate EC_METHOD
368 */
945e15a2 369
ba12070f
NL
370/** Creates a new EC_GROUP object with the specified parameters defined
371 * over GFp (defined by the equation y^2 = x^3 + a*x + b)
372 * \param p BIGNUM with the prime number
373 * \param a BIGNUM with the parameter a of the equation
374 * \param b BIGNUM with the parameter b of the equation
375 * \param ctx BN_CTX object (optional)
376 * \return newly created EC_GROUP object with the specified parameters
377 */
0f113f3e
MC
378EC_GROUP *EC_GROUP_new_curve_GFp(const BIGNUM *p, const BIGNUM *a,
379 const BIGNUM *b, BN_CTX *ctx);
380# ifndef OPENSSL_NO_EC2M
ba12070f
NL
381/** Creates a new EC_GROUP object with the specified parameters defined
382 * over GF2m (defined by the equation y^2 + x*y = x^3 + a*x^2 + b)
383 * \param p BIGNUM with the polynomial defining the underlying field
384 * \param a BIGNUM with the parameter a of the equation
385 * \param b BIGNUM with the parameter b of the equation
386 * \param ctx BN_CTX object (optional)
387 * \return newly created EC_GROUP object with the specified parameters
388 */
0f113f3e
MC
389EC_GROUP *EC_GROUP_new_curve_GF2m(const BIGNUM *p, const BIGNUM *a,
390 const BIGNUM *b, BN_CTX *ctx);
391# endif
ba12070f
NL
392/** Creates a EC_GROUP object with a curve specified by a NID
393 * \param nid NID of the OID of the curve name
394 * \return newly created EC_GROUP object with specified curve or NULL
395 * if an error occurred
396 */
8b15c740 397EC_GROUP *EC_GROUP_new_by_curve_name(int nid);
ba12070f 398
ba12070f
NL
399/********************************************************************/
400/* handling of internal curves */
401/********************************************************************/
402
0f113f3e
MC
403typedef struct {
404 int nid;
405 const char *comment;
406} EC_builtin_curve;
ba12070f 407
0f113f3e
MC
408/*
409 * EC_builtin_curves(EC_builtin_curve *r, size_t size) returns number of all
410 * available curves or zero if a error occurred. In case r ist not zero
411 * nitems EC_builtin_curve structures are filled with the data of the first
412 * nitems internal groups
413 */
65b1d31d 414size_t EC_get_builtin_curves(EC_builtin_curve *r, size_t nitems);
7eb18f12 415
64095ce9
DSH
416const char *EC_curve_nid2nist(int nid);
417int EC_curve_nist2nid(const char *name);
7e31164a 418
ba12070f
NL
419/********************************************************************/
420/* EC_POINT functions */
421/********************************************************************/
422
423/** Creates a new EC_POINT object for the specified EC_GROUP
424 * \param group EC_GROUP the underlying EC_GROUP object
425 * \return newly created EC_POINT object or NULL if an error occurred
426 */
427EC_POINT *EC_POINT_new(const EC_GROUP *group);
428
429/** Frees a EC_POINT object
430 * \param point EC_POINT object to be freed
431 */
432void EC_POINT_free(EC_POINT *point);
433
434/** Clears and frees a EC_POINT object
435 * \param point EC_POINT object to be cleared and freed
436 */
437void EC_POINT_clear_free(EC_POINT *point);
438
439/** Copies EC_POINT object
440 * \param dst destination EC_POINT object
441 * \param src source EC_POINT object
478b50cf 442 * \return 1 on success and 0 if an error occurred
ba12070f
NL
443 */
444int EC_POINT_copy(EC_POINT *dst, const EC_POINT *src);
945e15a2 445
ba12070f
NL
446/** Creates a new EC_POINT object and copies the content of the supplied
447 * EC_POINT
448 * \param src source EC_POINT object
449 * \param group underlying the EC_GROUP object
0f113f3e 450 * \return newly created EC_POINT object or NULL if an error occurred
ba12070f
NL
451 */
452EC_POINT *EC_POINT_dup(const EC_POINT *src, const EC_GROUP *group);
0f113f3e
MC
453
454/** Returns the EC_METHOD used in EC_POINT object
ba12070f
NL
455 * \param point EC_POINT object
456 * \return the EC_METHOD used
457 */
458const EC_METHOD *EC_POINT_method_of(const EC_POINT *point);
459
460/** Sets a point to infinity (neutral element)
461 * \param group underlying EC_GROUP object
462 * \param point EC_POINT to set to infinity
478b50cf 463 * \return 1 on success and 0 if an error occurred
ba12070f
NL
464 */
465int EC_POINT_set_to_infinity(const EC_GROUP *group, EC_POINT *point);
466
467/** Sets the jacobian projective coordinates of a EC_POINT over GFp
468 * \param group underlying EC_GROUP object
469 * \param p EC_POINT object
470 * \param x BIGNUM with the x-coordinate
471 * \param y BIGNUM with the y-coordinate
472 * \param z BIGNUM with the z-coordinate
473 * \param ctx BN_CTX object (optional)
478b50cf 474 * \return 1 on success and 0 if an error occurred
ba12070f 475 */
0f113f3e
MC
476int EC_POINT_set_Jprojective_coordinates_GFp(const EC_GROUP *group,
477 EC_POINT *p, const BIGNUM *x,
478 const BIGNUM *y, const BIGNUM *z,
479 BN_CTX *ctx);
ba12070f
NL
480
481/** Gets the jacobian projective coordinates of a EC_POINT over GFp
482 * \param group underlying EC_GROUP object
483 * \param p EC_POINT object
484 * \param x BIGNUM for the x-coordinate
485 * \param y BIGNUM for the y-coordinate
486 * \param z BIGNUM for the z-coordinate
487 * \param ctx BN_CTX object (optional)
478b50cf 488 * \return 1 on success and 0 if an error occurred
ba12070f
NL
489 */
490int EC_POINT_get_Jprojective_coordinates_GFp(const EC_GROUP *group,
0f113f3e
MC
491 const EC_POINT *p, BIGNUM *x,
492 BIGNUM *y, BIGNUM *z,
493 BN_CTX *ctx);
ba12070f
NL
494
495/** Sets the affine coordinates of a EC_POINT over GFp
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)
478b50cf 501 * \return 1 on success and 0 if an error occurred
ba12070f
NL
502 */
503int EC_POINT_set_affine_coordinates_GFp(const EC_GROUP *group, EC_POINT *p,
0f113f3e
MC
504 const BIGNUM *x, const BIGNUM *y,
505 BN_CTX *ctx);
ba12070f
NL
506
507/** Gets the affine coordinates of a EC_POINT over GFp
508 * \param group underlying EC_GROUP object
509 * \param p EC_POINT object
510 * \param x BIGNUM for the x-coordinate
511 * \param y BIGNUM for the y-coordinate
512 * \param ctx BN_CTX object (optional)
478b50cf 513 * \return 1 on success and 0 if an error occurred
ba12070f
NL
514 */
515int EC_POINT_get_affine_coordinates_GFp(const EC_GROUP *group,
0f113f3e
MC
516 const EC_POINT *p, BIGNUM *x,
517 BIGNUM *y, BN_CTX *ctx);
ba12070f
NL
518
519/** Sets the x9.62 compressed coordinates of a EC_POINT over GFp
520 * \param group underlying EC_GROUP object
521 * \param p EC_POINT object
522 * \param x BIGNUM with x-coordinate
523 * \param y_bit integer with the y-Bit (either 0 or 1)
524 * \param ctx BN_CTX object (optional)
478b50cf 525 * \return 1 on success and 0 if an error occurred
ba12070f 526 */
0f113f3e
MC
527int EC_POINT_set_compressed_coordinates_GFp(const EC_GROUP *group,
528 EC_POINT *p, const BIGNUM *x,
529 int y_bit, BN_CTX *ctx);
530# ifndef OPENSSL_NO_EC2M
ba12070f
NL
531/** Sets the affine coordinates of a EC_POINT over GF2m
532 * \param group underlying EC_GROUP object
533 * \param p EC_POINT object
534 * \param x BIGNUM with the x-coordinate
535 * \param y BIGNUM with the y-coordinate
536 * \param ctx BN_CTX object (optional)
478b50cf 537 * \return 1 on success and 0 if an error occurred
ba12070f
NL
538 */
539int EC_POINT_set_affine_coordinates_GF2m(const EC_GROUP *group, EC_POINT *p,
0f113f3e
MC
540 const BIGNUM *x, const BIGNUM *y,
541 BN_CTX *ctx);
ba12070f
NL
542
543/** Gets the affine coordinates of a EC_POINT over GF2m
544 * \param group underlying EC_GROUP object
545 * \param p EC_POINT object
546 * \param x BIGNUM for the x-coordinate
547 * \param y BIGNUM for the y-coordinate
548 * \param ctx BN_CTX object (optional)
478b50cf 549 * \return 1 on success and 0 if an error occurred
ba12070f
NL
550 */
551int EC_POINT_get_affine_coordinates_GF2m(const EC_GROUP *group,
0f113f3e
MC
552 const EC_POINT *p, BIGNUM *x,
553 BIGNUM *y, BN_CTX *ctx);
ba12070f
NL
554
555/** Sets the x9.62 compressed coordinates of a EC_POINT over GF2m
556 * \param group underlying EC_GROUP object
557 * \param p EC_POINT object
558 * \param x BIGNUM with x-coordinate
559 * \param y_bit integer with the y-Bit (either 0 or 1)
560 * \param ctx BN_CTX object (optional)
478b50cf 561 * \return 1 on success and 0 if an error occurred
ba12070f 562 */
0f113f3e
MC
563int EC_POINT_set_compressed_coordinates_GF2m(const EC_GROUP *group,
564 EC_POINT *p, const BIGNUM *x,
565 int y_bit, BN_CTX *ctx);
566# endif
ba12070f
NL
567/** Encodes a EC_POINT object to a octet string
568 * \param group underlying EC_GROUP object
569 * \param p EC_POINT object
570 * \param form point conversion form
571 * \param buf memory buffer for the result. If NULL the function returns
572 * required buffer size.
573 * \param len length of the memory buffer
574 * \param ctx BN_CTX object (optional)
575 * \return the length of the encoded octet string or 0 if an error occurred
576 */
577size_t EC_POINT_point2oct(const EC_GROUP *group, const EC_POINT *p,
0f113f3e
MC
578 point_conversion_form_t form,
579 unsigned char *buf, size_t len, BN_CTX *ctx);
ba12070f
NL
580
581/** Decodes a EC_POINT from a octet string
582 * \param group underlying EC_GROUP object
583 * \param p EC_POINT object
584 * \param buf memory buffer with the encoded ec point
585 * \param len length of the encoded ec point
586 * \param ctx BN_CTX object (optional)
478b50cf 587 * \return 1 on success and 0 if an error occurred
ba12070f
NL
588 */
589int EC_POINT_oct2point(const EC_GROUP *group, EC_POINT *p,
0f113f3e 590 const unsigned char *buf, size_t len, BN_CTX *ctx);
7d7db13e 591
981bd8a2
DSH
592/** Encodes an EC_POINT object to an allocated octet string
593 * \param group underlying EC_GROUP object
594 * \param point EC_POINT object
595 * \param form point conversion form
596 * \param pbuf returns pointer to allocated buffer
597 * \param len length of the memory buffer
598 * \param ctx BN_CTX object (optional)
599 * \return the length of the encoded octet string or 0 if an error occurred
600 */
601
602size_t EC_POINT_point2buf(const EC_GROUP *group, const EC_POINT *point,
603 point_conversion_form_t form,
604 unsigned char **pbuf, BN_CTX *ctx);
605
6cbe6382
BM
606/* other interfaces to point2oct/oct2point: */
607BIGNUM *EC_POINT_point2bn(const EC_GROUP *, const EC_POINT *,
0f113f3e 608 point_conversion_form_t form, BIGNUM *, BN_CTX *);
6cbe6382 609EC_POINT *EC_POINT_bn2point(const EC_GROUP *, const BIGNUM *,
0f113f3e 610 EC_POINT *, BN_CTX *);
6cbe6382 611char *EC_POINT_point2hex(const EC_GROUP *, const EC_POINT *,
0f113f3e 612 point_conversion_form_t form, BN_CTX *);
6cbe6382 613EC_POINT *EC_POINT_hex2point(const EC_GROUP *, const char *,
0f113f3e 614 EC_POINT *, BN_CTX *);
3a12ce01 615
ba12070f
NL
616/********************************************************************/
617/* functions for doing EC_POINT arithmetic */
618/********************************************************************/
619
0f113f3e 620/** Computes the sum of two EC_POINT
ba12070f
NL
621 * \param group underlying EC_GROUP object
622 * \param r EC_POINT object for the result (r = a + b)
623 * \param a EC_POINT object with the first summand
624 * \param b EC_POINT object with the second summand
625 * \param ctx BN_CTX object (optional)
478b50cf 626 * \return 1 on success and 0 if an error occurred
ba12070f 627 */
0f113f3e
MC
628int EC_POINT_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a,
629 const EC_POINT *b, BN_CTX *ctx);
ba12070f
NL
630
631/** Computes the double of a EC_POINT
632 * \param group underlying EC_GROUP object
633 * \param r EC_POINT object for the result (r = 2 * a)
0f113f3e 634 * \param a EC_POINT object
ba12070f 635 * \param ctx BN_CTX object (optional)
478b50cf 636 * \return 1 on success and 0 if an error occurred
ba12070f 637 */
0f113f3e
MC
638int EC_POINT_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a,
639 BN_CTX *ctx);
ba12070f
NL
640
641/** Computes the inverse of a EC_POINT
642 * \param group underlying EC_GROUP object
643 * \param a EC_POINT object to be inverted (it's used for the result as well)
644 * \param ctx BN_CTX object (optional)
478b50cf 645 * \return 1 on success and 0 if an error occurred
ba12070f
NL
646 */
647int EC_POINT_invert(const EC_GROUP *group, EC_POINT *a, BN_CTX *ctx);
648
649/** Checks whether the point is the neutral element of the group
650 * \param group the underlying EC_GROUP object
651 * \param p EC_POINT object
652 * \return 1 if the point is the neutral element and 0 otherwise
653 */
654int EC_POINT_is_at_infinity(const EC_GROUP *group, const EC_POINT *p);
655
0f113f3e 656/** Checks whether the point is on the curve
ba12070f
NL
657 * \param group underlying EC_GROUP object
658 * \param point EC_POINT object to check
659 * \param ctx BN_CTX object (optional)
660 * \return 1 if point if on the curve and 0 otherwise
661 */
0f113f3e
MC
662int EC_POINT_is_on_curve(const EC_GROUP *group, const EC_POINT *point,
663 BN_CTX *ctx);
ba12070f 664
0f113f3e 665/** Compares two EC_POINTs
ba12070f
NL
666 * \param group underlying EC_GROUP object
667 * \param a first EC_POINT object
668 * \param b second EC_POINT object
669 * \param ctx BN_CTX object (optional)
670 * \return 0 if both points are equal and a value != 0 otherwise
671 */
0f113f3e
MC
672int EC_POINT_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b,
673 BN_CTX *ctx);
fb171e53 674
9945b460 675int EC_POINT_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx);
0f113f3e
MC
676int EC_POINTs_make_affine(const EC_GROUP *group, size_t num,
677 EC_POINT *points[], BN_CTX *ctx);
fb171e53 678
16602b5c 679/** Computes r = generator * n sum_{i=0}^{num-1} p[i] * m[i]
ba12070f
NL
680 * \param group underlying EC_GROUP object
681 * \param r EC_POINT object for the result
682 * \param n BIGNUM with the multiplier for the group generator (optional)
683 * \param num number futher summands
684 * \param p array of size num of EC_POINT objects
685 * \param m array of size num of BIGNUM objects
686 * \param ctx BN_CTX object (optional)
478b50cf 687 * \return 1 on success and 0 if an error occurred
ba12070f 688 */
0f113f3e
MC
689int EC_POINTs_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *n,
690 size_t num, const EC_POINT *p[], const BIGNUM *m[],
691 BN_CTX *ctx);
ba12070f
NL
692
693/** Computes r = generator * n + q * m
694 * \param group underlying EC_GROUP object
695 * \param r EC_POINT object for the result
696 * \param n BIGNUM with the multiplier for the group generator (optional)
697 * \param q EC_POINT object with the first factor of the second summand
698 * \param m BIGNUM with the second factor of the second summand
699 * \param ctx BN_CTX object (optional)
478b50cf 700 * \return 1 on success and 0 if an error occurred
ba12070f 701 */
0f113f3e
MC
702int EC_POINT_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *n,
703 const EC_POINT *q, const BIGNUM *m, BN_CTX *ctx);
3a12ce01 704
ba12070f
NL
705/** Stores multiples of generator for faster point multiplication
706 * \param group EC_GROUP object
707 * \param ctx BN_CTX object (optional)
478b50cf 708 * \return 1 on success and 0 if an error occurred
ba12070f
NL
709 */
710int EC_GROUP_precompute_mult(EC_GROUP *group, BN_CTX *ctx);
6cc5e19d 711
ba12070f
NL
712/** Reports whether a precomputation has been done
713 * \param group EC_GROUP object
714 * \return 1 if a pre-computation has been done and 0 otherwise
715 */
716int EC_GROUP_have_precompute_mult(const EC_GROUP *group);
6cc5e19d 717
ba12070f
NL
718/********************************************************************/
719/* ASN1 stuff */
720/********************************************************************/
8aefe253 721
0f113f3e
MC
722/*
723 * EC_GROUP_get_basis_type() returns the NID of the basis type used to
724 * represent the field elements
725 */
34f1f2a8 726int EC_GROUP_get_basis_type(const EC_GROUP *);
0f113f3e 727# ifndef OPENSSL_NO_EC2M
34f1f2a8 728int EC_GROUP_get_trinomial_basis(const EC_GROUP *, unsigned int *k);
0f113f3e
MC
729int EC_GROUP_get_pentanomial_basis(const EC_GROUP *, unsigned int *k1,
730 unsigned int *k2, unsigned int *k3);
731# endif
8aefe253 732
86f300d3
DSH
733# define OPENSSL_EC_EXPLICIT_CURVE 0x000
734# define OPENSSL_EC_NAMED_CURVE 0x001
458c2917 735
458c2917
BM
736typedef struct ecpk_parameters_st ECPKPARAMETERS;
737
6343829a 738EC_GROUP *d2i_ECPKParameters(EC_GROUP **, const unsigned char **in, long len);
458c2917
BM
739int i2d_ECPKParameters(const EC_GROUP *, unsigned char **out);
740
0f113f3e
MC
741# define d2i_ECPKParameters_bio(bp,x) ASN1_d2i_bio_of(EC_GROUP,NULL,d2i_ECPKParameters,bp,x)
742# define i2d_ECPKParameters_bio(bp,x) ASN1_i2d_bio_of_const(EC_GROUP,i2d_ECPKParameters,bp,x)
743# define d2i_ECPKParameters_fp(fp,x) (EC_GROUP *)ASN1_d2i_fp(NULL, \
5dbd3efc 744 (char *(*)())d2i_ECPKParameters,(fp),(unsigned char **)(x))
0f113f3e
MC
745# define i2d_ECPKParameters_fp(fp,x) ASN1_i2d_fp(i2d_ECPKParameters,(fp), \
746 (unsigned char *)(x))
5f3d6f70 747
0f113f3e 748int ECPKParameters_print(BIO *bp, const EC_GROUP *x, int off);
0f113f3e
MC
749# ifndef OPENSSL_NO_STDIO
750int ECPKParameters_print_fp(FILE *fp, const EC_GROUP *x, int off);
751# endif
ba12070f
NL
752
753/********************************************************************/
754/* EC_KEY functions */
755/********************************************************************/
756
14a7cfb3 757/* some values for the encoding_flag */
0f113f3e
MC
758# define EC_PKEY_NO_PARAMETERS 0x001
759# define EC_PKEY_NO_PUBKEY 0x002
14a7cfb3 760
cac4fb58 761/* some values for the flags field */
0f113f3e
MC
762# define EC_FLAG_NON_FIPS_ALLOW 0x1
763# define EC_FLAG_FIPS_CHECKED 0x2
a22a7e70 764# define EC_FLAG_COFACTOR_ECDH 0x1000
cac4fb58 765
ba12070f
NL
766/** Creates a new EC_KEY object.
767 * \return EC_KEY object or NULL if an error occurred.
768 */
14a7cfb3 769EC_KEY *EC_KEY_new(void);
ba12070f 770
cac4fb58
DSH
771int EC_KEY_get_flags(const EC_KEY *key);
772
773void EC_KEY_set_flags(EC_KEY *key, int flags);
774
775void EC_KEY_clear_flags(EC_KEY *key, int flags);
776
ba12070f
NL
777/** Creates a new EC_KEY object using a named curve as underlying
778 * EC_GROUP object.
779 * \param nid NID of the named curve.
0f113f3e 780 * \return EC_KEY object or NULL if an error occurred.
ba12070f 781 */
9dd84053 782EC_KEY *EC_KEY_new_by_curve_name(int nid);
ba12070f
NL
783
784/** Frees a EC_KEY object.
785 * \param key EC_KEY object to be freed.
786 */
787void EC_KEY_free(EC_KEY *key);
788
789/** Copies a EC_KEY object.
790 * \param dst destination EC_KEY object
791 * \param src src EC_KEY object
792 * \return dst or NULL if an error occurred.
793 */
3aef36ff 794EC_KEY *EC_KEY_copy(EC_KEY *dst, EC_KEY *src);
ba12070f
NL
795
796/** Creates a new EC_KEY object and copies the content from src to it.
797 * \param src the source EC_KEY object
798 * \return newly created EC_KEY object or NULL if an error occurred.
799 */
3aef36ff 800EC_KEY *EC_KEY_dup(EC_KEY *src);
ba12070f
NL
801
802/** Increases the internal reference count of a EC_KEY object.
803 * \param key EC_KEY object
804 * \return 1 on success and 0 if an error occurred.
805 */
806int EC_KEY_up_ref(EC_KEY *key);
807
808/** Returns the EC_GROUP object of a EC_KEY object
809 * \param key EC_KEY object
810 * \return the EC_GROUP object (possibly NULL).
811 */
812const EC_GROUP *EC_KEY_get0_group(const EC_KEY *key);
813
814/** Sets the EC_GROUP of a EC_KEY object.
815 * \param key EC_KEY object
816 * \param group EC_GROUP to use in the EC_KEY object (note: the EC_KEY
817 * object will use an own copy of the EC_GROUP).
818 * \return 1 on success and 0 if an error occurred.
819 */
820int EC_KEY_set_group(EC_KEY *key, const EC_GROUP *group);
821
822/** Returns the private key of a EC_KEY object.
823 * \param key EC_KEY object
824 * \return a BIGNUM with the private key (possibly NULL).
825 */
826const BIGNUM *EC_KEY_get0_private_key(const EC_KEY *key);
827
828/** Sets the private key of a EC_KEY object.
829 * \param key EC_KEY object
830 * \param prv BIGNUM with the private key (note: the EC_KEY object
831 * will use an own copy of the BIGNUM).
832 * \return 1 on success and 0 if an error occurred.
833 */
834int EC_KEY_set_private_key(EC_KEY *key, const BIGNUM *prv);
835
836/** Returns the public key of a EC_KEY object.
837 * \param key the EC_KEY object
838 * \return a EC_POINT object with the public key (possibly NULL)
839 */
840const EC_POINT *EC_KEY_get0_public_key(const EC_KEY *key);
841
842/** Sets the public key of a EC_KEY object.
843 * \param key EC_KEY object
844 * \param pub EC_POINT object with the public key (note: the EC_KEY object
845 * will use an own copy of the EC_POINT object).
846 * \return 1 on success and 0 if an error occurred.
847 */
848int EC_KEY_set_public_key(EC_KEY *key, const EC_POINT *pub);
849
850unsigned EC_KEY_get_enc_flags(const EC_KEY *key);
9945b460
DSH
851void EC_KEY_set_enc_flags(EC_KEY *eckey, unsigned int flags);
852point_conversion_form_t EC_KEY_get_conv_form(const EC_KEY *key);
853void EC_KEY_set_conv_form(EC_KEY *eckey, point_conversion_form_t cform);
3aef36ff
RS
854
855#define EC_KEY_get_ex_new_index(l, p, newf, dupf, freef) \
856 CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_EC_KEY, l, p, newf, dupf, freef)
857int EC_KEY_set_ex_data(EC_KEY *key, int idx, void *arg);
858void *EC_KEY_get_ex_data(const EC_KEY *key, int idx);
859
9dd84053 860/* wrapper functions for the underlying EC_GROUP object */
9945b460 861void EC_KEY_set_asn1_flag(EC_KEY *eckey, int asn1_flag);
ba12070f 862
0f113f3e 863/** Creates a table of pre-computed multiples of the generator to
ba12070f
NL
864 * accelerate further EC_KEY operations.
865 * \param key EC_KEY object
866 * \param ctx BN_CTX object (optional)
867 * \return 1 on success and 0 if an error occurred.
868 */
869int EC_KEY_precompute_mult(EC_KEY *key, BN_CTX *ctx);
870
871/** Creates a new ec private (and optional a new public) key.
872 * \param key EC_KEY object
873 * \return 1 on success and 0 if an error occurred.
874 */
875int EC_KEY_generate_key(EC_KEY *key);
876
877/** Verifies that a private and/or public key is valid.
878 * \param key the EC_KEY object
879 * \return 1 on success and 0 otherwise.
880 */
881int EC_KEY_check_key(const EC_KEY *key);
882
fef1c40b 883/** Sets a public key from affine coordindates performing
478b50cf 884 * necessary NIST PKV tests.
fef1c40b
DSH
885 * \param key the EC_KEY object
886 * \param x public key x coordinate
887 * \param y public key y coordinate
888 * \return 1 on success and 0 otherwise.
889 */
0f113f3e
MC
890int EC_KEY_set_public_key_affine_coordinates(EC_KEY *key, BIGNUM *x,
891 BIGNUM *y);
ba12070f 892
981bd8a2
DSH
893/** Encodes an EC_KEY public key to an allocated octet string
894 * \param key key to encode
895 * \param form point conversion form
896 * \param pbuf returns pointer to allocated buffer
897 * \param len length of the memory buffer
898 * \param ctx BN_CTX object (optional)
899 * \return the length of the encoded octet string or 0 if an error occurred
900 */
901
902size_t EC_KEY_key2buf(const EC_KEY *key, point_conversion_form_t form,
903 unsigned char **pbuf, BN_CTX *ctx);
904
905/** Decodes a EC_KEY public key from a octet string
906 * \param key key to decode
907 * \param buf memory buffer with the encoded ec point
908 * \param len length of the encoded ec point
909 * \param ctx BN_CTX object (optional)
910 * \return 1 on success and 0 if an error occurred
911 */
912
913int EC_KEY_oct2key(EC_KEY *key, const unsigned char *buf, size_t len,
914 BN_CTX *ctx);
915
ba12070f
NL
916/********************************************************************/
917/* de- and encoding functions for SEC1 ECPrivateKey */
918/********************************************************************/
919
920/** Decodes a private key from a memory buffer.
921 * \param key a pointer to a EC_KEY object which should be used (or NULL)
922 * \param in pointer to memory with the DER encoded private key
923 * \param len length of the DER encoded private key
924 * \return the decoded private key or NULL if an error occurred.
925 */
6343829a 926EC_KEY *d2i_ECPrivateKey(EC_KEY **key, const unsigned char **in, long len);
ba12070f
NL
927
928/** Encodes a private key object and stores the result in a buffer.
929 * \param key the EC_KEY object to encode
930 * \param out the buffer for the result (if NULL the function returns number
931 * of bytes needed).
932 * \return 1 on success and 0 if an error occurred.
933 */
934int i2d_ECPrivateKey(EC_KEY *key, unsigned char **out);
935
ba12070f
NL
936/********************************************************************/
937/* de- and encoding functions for EC parameters */
938/********************************************************************/
939
940/** Decodes ec parameter from a memory buffer.
941 * \param key a pointer to a EC_KEY object which should be used (or NULL)
942 * \param in pointer to memory with the DER encoded ec parameters
943 * \param len length of the DER encoded ec parameters
944 * \return a EC_KEY object with the decoded parameters or NULL if an error
945 * occurred.
946 */
947EC_KEY *d2i_ECParameters(EC_KEY **key, const unsigned char **in, long len);
948
949/** Encodes ec parameter and stores the result in a buffer.
1afd7fa9 950 * \param key the EC_KEY object with ec parameters to encode
ba12070f
NL
951 * \param out the buffer for the result (if NULL the function returns number
952 * of bytes needed).
953 * \return 1 on success and 0 if an error occurred.
954 */
955int i2d_ECParameters(EC_KEY *key, unsigned char **out);
956
ba12070f
NL
957/********************************************************************/
958/* de- and encoding functions for EC public key */
959/* (octet string, not DER -- hence 'o2i' and 'i2o') */
960/********************************************************************/
961
962/** Decodes a ec public key from a octet string.
963 * \param key a pointer to a EC_KEY object which should be used
964 * \param in memory buffer with the encoded public key
965 * \param len length of the encoded public key
966 * \return EC_KEY object with decoded public key or NULL if an error
967 * occurred.
968 */
969EC_KEY *o2i_ECPublicKey(EC_KEY **key, const unsigned char **in, long len);
970
971/** Encodes a ec public key in an octet string.
972 * \param key the EC_KEY object with the public key
973 * \param out the buffer for the result (if NULL the function returns number
974 * of bytes needed).
975 * \return 1 on success and 0 if an error occurred
976 */
977int i2o_ECPublicKey(EC_KEY *key, unsigned char **out);
14a7cfb3 978
ba12070f
NL
979/** Prints out the ec parameters on human readable form.
980 * \param bp BIO object to which the information is printed
981 * \param key EC_KEY object
982 * \return 1 on success and 0 if an error occurred
983 */
0f113f3e 984int ECParameters_print(BIO *bp, const EC_KEY *key);
ba12070f
NL
985
986/** Prints out the contents of a EC_KEY object
987 * \param bp BIO object to which the information is printed
988 * \param key EC_KEY object
0f113f3e 989 * \param off line offset
ba12070f
NL
990 * \return 1 on success and 0 if an error occurred
991 */
0f113f3e 992int EC_KEY_print(BIO *bp, const EC_KEY *key, int off);
ba12070f 993
0f113f3e 994# ifndef OPENSSL_NO_STDIO
ba12070f
NL
995/** Prints out the ec parameters on human readable form.
996 * \param fp file descriptor to which the information is printed
997 * \param key EC_KEY object
998 * \return 1 on success and 0 if an error occurred
999 */
0f113f3e 1000int ECParameters_print_fp(FILE *fp, const EC_KEY *key);
ba12070f
NL
1001
1002/** Prints out the contents of a EC_KEY object
1003 * \param fp file descriptor to which the information is printed
1004 * \param key EC_KEY object
0f113f3e 1005 * \param off line offset
ba12070f
NL
1006 * \return 1 on success and 0 if an error occurred
1007 */
0f113f3e 1008int EC_KEY_print_fp(FILE *fp, const EC_KEY *key, int off);
ba12070f 1009
0f113f3e 1010# endif
0bee0e62 1011
28572b57
DSH
1012const EC_KEY_METHOD *EC_KEY_OpenSSL(void);
1013const EC_KEY_METHOD *EC_KEY_get_default_method(void);
1014void EC_KEY_set_default_method(const EC_KEY_METHOD *meth);
3aef36ff
RS
1015const EC_KEY_METHOD *EC_KEY_get_method(const EC_KEY *key);
1016int EC_KEY_set_method(EC_KEY *key, const EC_KEY_METHOD *meth);
28572b57
DSH
1017EC_KEY *EC_KEY_new_method(ENGINE *engine);
1018
768c53e1
DSH
1019int ECDH_KDF_X9_62(unsigned char *out, size_t outlen,
1020 const unsigned char *Z, size_t Zlen,
1021 const unsigned char *sinfo, size_t sinfolen,
1022 const EVP_MD *md);
1023
a22a7e70 1024int ECDH_compute_key(void *out, size_t outlen, const EC_POINT *pub_key,
2c61a5ec
DSH
1025 const EC_KEY *ecdh,
1026 void *(*KDF) (const void *in, size_t inlen,
1027 void *out, size_t *outlen));
a22a7e70 1028
714b2abb
DSH
1029typedef struct ECDSA_SIG_st ECDSA_SIG;
1030
ef5b2ba6
DSH
1031/** Allocates and initialize a ECDSA_SIG structure
1032 * \return pointer to a ECDSA_SIG structure or NULL if an error occurred
1033 */
1034ECDSA_SIG *ECDSA_SIG_new(void);
1035
1036/** frees a ECDSA_SIG structure
1037 * \param sig pointer to the ECDSA_SIG structure
1038 */
1039void ECDSA_SIG_free(ECDSA_SIG *sig);
1040
1041/** DER encode content of ECDSA_SIG object (note: this function modifies *pp
1042 * (*pp += length of the DER encoded signature)).
1043 * \param sig pointer to the ECDSA_SIG object
1044 * \param pp pointer to a unsigned char pointer for the output or NULL
1045 * \return the length of the DER encoded ECDSA_SIG object or 0
1046 */
1047int i2d_ECDSA_SIG(const ECDSA_SIG *sig, unsigned char **pp);
1048
1049/** Decodes a DER encoded ECDSA signature (note: this function changes *pp
1050 * (*pp += len)).
1051 * \param sig pointer to ECDSA_SIG pointer (may be NULL)
1052 * \param pp memory buffer with the DER encoded signature
1053 * \param len length of the buffer
1054 * \return pointer to the decoded ECDSA_SIG structure (or NULL)
1055 */
1056ECDSA_SIG *d2i_ECDSA_SIG(ECDSA_SIG **sig, const unsigned char **pp, long len);
1057
7236e3c8
DSH
1058/** Accessor for r and s fields of ECDSA_SIG
1059 * \param sig pointer to ECDSA_SIG pointer
1060 * \param pr pointer to BIGNUM pointer for r (may be NULL)
1061 * \param ps pointer to BIGNUM pointer for s (may be NULL)
1062 */
1063void ECDSA_SIG_get0(BIGNUM **pr, BIGNUM **ps, ECDSA_SIG *sig);
1064
180eec16
DSH
1065/** Computes the ECDSA signature of the given hash value using
1066 * the supplied private key and returns the created signature.
1067 * \param dgst pointer to the hash value
1068 * \param dgst_len length of the hash value
1069 * \param eckey EC_KEY object containing a private EC key
1070 * \return pointer to a ECDSA_SIG structure or NULL if an error occurred
1071 */
1072ECDSA_SIG *ECDSA_do_sign(const unsigned char *dgst, int dgst_len,
1073 EC_KEY *eckey);
1074
1075/** Computes ECDSA signature of a given hash value using the supplied
1076 * private key (note: sig must point to ECDSA_size(eckey) bytes of memory).
1077 * \param dgst pointer to the hash value to sign
1078 * \param dgstlen length of the hash value
1079 * \param kinv BIGNUM with a pre-computed inverse k (optional)
1080 * \param rp BIGNUM with a pre-computed rp value (optioanl),
1081 * see ECDSA_sign_setup
1082 * \param eckey EC_KEY object containing a private EC key
1083 * \return pointer to a ECDSA_SIG structure or NULL if an error occurred
1084 */
1085ECDSA_SIG *ECDSA_do_sign_ex(const unsigned char *dgst, int dgstlen,
1086 const BIGNUM *kinv, const BIGNUM *rp,
1087 EC_KEY *eckey);
1088
1089/** Verifies that the supplied signature is a valid ECDSA
1090 * signature of the supplied hash value using the supplied public key.
1091 * \param dgst pointer to the hash value
1092 * \param dgst_len length of the hash value
1093 * \param sig ECDSA_SIG structure
1094 * \param eckey EC_KEY object containing a public EC key
1095 * \return 1 if the signature is valid, 0 if the signature is invalid
1096 * and -1 on error
1097 */
1098int ECDSA_do_verify(const unsigned char *dgst, int dgst_len,
1099 const ECDSA_SIG *sig, EC_KEY *eckey);
1100
bd3602eb
DSH
1101/** Precompute parts of the signing operation
1102 * \param eckey EC_KEY object containing a private EC key
1103 * \param ctx BN_CTX object (optional)
1104 * \param kinv BIGNUM pointer for the inverse of k
1105 * \param rp BIGNUM pointer for x coordinate of k * generator
1106 * \return 1 on success and 0 otherwise
1107 */
1108int ECDSA_sign_setup(EC_KEY *eckey, BN_CTX *ctx, BIGNUM **kinv, BIGNUM **rp);
1109
1110/** Computes ECDSA signature of a given hash value using the supplied
1111 * private key (note: sig must point to ECDSA_size(eckey) bytes of memory).
1112 * \param type this parameter is ignored
1113 * \param dgst pointer to the hash value to sign
1114 * \param dgstlen length of the hash value
1115 * \param sig memory for the DER encoded created signature
1116 * \param siglen pointer to the length of the returned signature
1117 * \param eckey EC_KEY object containing a private EC key
1118 * \return 1 on success and 0 otherwise
1119 */
1120int ECDSA_sign(int type, const unsigned char *dgst, int dgstlen,
1121 unsigned char *sig, unsigned int *siglen, EC_KEY *eckey);
1122
1123/** Computes ECDSA signature of a given hash value using the supplied
1124 * private key (note: sig must point to ECDSA_size(eckey) bytes of memory).
1125 * \param type this parameter is ignored
1126 * \param dgst pointer to the hash value to sign
1127 * \param dgstlen length of the hash value
1128 * \param sig buffer to hold the DER encoded signature
1129 * \param siglen pointer to the length of the returned signature
1130 * \param kinv BIGNUM with a pre-computed inverse k (optional)
1131 * \param rp BIGNUM with a pre-computed rp value (optioanl),
1132 * see ECDSA_sign_setup
1133 * \param eckey EC_KEY object containing a private EC key
1134 * \return 1 on success and 0 otherwise
1135 */
1136int ECDSA_sign_ex(int type, const unsigned char *dgst, int dgstlen,
1137 unsigned char *sig, unsigned int *siglen,
1138 const BIGNUM *kinv, const BIGNUM *rp, EC_KEY *eckey);
1139
1140/** Verifies that the given signature is valid ECDSA signature
1141 * of the supplied hash value using the specified public key.
1142 * \param type this parameter is ignored
1143 * \param dgst pointer to the hash value
1144 * \param dgstlen length of the hash value
1145 * \param sig pointer to the DER encoded signature
1146 * \param siglen length of the DER encoded signature
1147 * \param eckey EC_KEY object containing a public EC key
1148 * \return 1 if the signature is valid, 0 if the signature is invalid
1149 * and -1 on error
1150 */
1151int ECDSA_verify(int type, const unsigned char *dgst, int dgstlen,
1152 const unsigned char *sig, int siglen, EC_KEY *eckey);
7236e3c8 1153
cf517a6d
DSH
1154/** Returns the maximum length of the DER encoded signature
1155 * \param eckey EC_KEY object
1156 * \return numbers of bytes required for the DER encoded signature
1157 */
1158int ECDSA_size(const EC_KEY *eckey);
1159
7bb75a5d
DSH
1160/********************************************************************/
1161/* EC_KEY_METHOD constructors, destructors, writers and accessors */
1162/********************************************************************/
1163
f8d7d2d6
DSH
1164EC_KEY_METHOD *EC_KEY_METHOD_new(const EC_KEY_METHOD *meth);
1165void EC_KEY_METHOD_free(EC_KEY_METHOD *meth);
1166void EC_KEY_METHOD_set_init(EC_KEY_METHOD *meth,
1167 int (*init)(EC_KEY *key),
1168 void (*finish)(EC_KEY *key),
1169 int (*copy)(EC_KEY *dest, const EC_KEY *src),
1170 int (*set_group)(EC_KEY *key, const EC_GROUP *grp),
1171 int (*set_private)(EC_KEY *key,
1172 const BIGNUM *priv_key),
1173 int (*set_public)(EC_KEY *key,
1174 const EC_POINT *pub_key));
1175
1176void EC_KEY_METHOD_set_keygen(EC_KEY_METHOD *meth,
1177 int (*keygen)(EC_KEY *key));
1178
1179void EC_KEY_METHOD_set_compute_key(EC_KEY_METHOD *meth,
1180 int (*ckey)(void *out,
1181 size_t outlen,
1182 const EC_POINT *pub_key,
2c61a5ec 1183 const EC_KEY *ecdh,
f8d7d2d6
DSH
1184 void *(*KDF) (const void *in,
1185 size_t inlen,
1186 void *out,
1187 size_t *outlen)));
1188
1189void EC_KEY_METHOD_set_sign(EC_KEY_METHOD *meth,
1190 int (*sign)(int type, const unsigned char *dgst,
1191 int dlen, unsigned char *sig,
1192 unsigned int *siglen,
1193 const BIGNUM *kinv, const BIGNUM *r,
1194 EC_KEY *eckey),
1195 int (*sign_setup)(EC_KEY *eckey, BN_CTX *ctx_in,
1196 BIGNUM **kinvp, BIGNUM **rp),
1197 ECDSA_SIG *(*sign_sig)(const unsigned char *dgst,
1198 int dgst_len,
1199 const BIGNUM *in_kinv,
1200 const BIGNUM *in_r,
1201 EC_KEY *eckey));
1202
1203void EC_KEY_METHOD_set_verify(EC_KEY_METHOD *meth,
1204 int (*verify)(int type, const unsigned
1205 char *dgst, int dgst_len,
1206 const unsigned char *sigbuf,
1207 int sig_len, EC_KEY *eckey),
1208 int (*verify_sig)(const unsigned char *dgst,
1209 int dgst_len,
1210 const ECDSA_SIG *sig,
1211 EC_KEY *eckey));
1212
1213void EC_KEY_METHOD_get_init(EC_KEY_METHOD *meth,
1214 int (**pinit)(EC_KEY *key),
1215 void (**pfinish)(EC_KEY *key),
1216 int (**pcopy)(EC_KEY *dest, const EC_KEY *src),
1217 int (**pset_group)(EC_KEY *key,
1218 const EC_GROUP *grp),
1219 int (**pset_private)(EC_KEY *key,
1220 const BIGNUM *priv_key),
1221 int (**pset_public)(EC_KEY *key,
1222 const EC_POINT *pub_key));
1223
1224void EC_KEY_METHOD_get_keygen(EC_KEY_METHOD *meth,
1225 int (**pkeygen)(EC_KEY *key));
1226
1227void EC_KEY_METHOD_get_compute_key(EC_KEY_METHOD *meth,
1228 int (**pck)(void *out,
1229 size_t outlen,
1230 const EC_POINT *pub_key,
2c61a5ec 1231 const EC_KEY *ecdh,
f8d7d2d6
DSH
1232 void *(*KDF) (const void *in,
1233 size_t inlen,
1234 void *out,
1235 size_t *outlen)));
1236
1237void EC_KEY_METHOD_get_sign(EC_KEY_METHOD *meth,
1238 int (**psign)(int type, const unsigned char *dgst,
1239 int dlen, unsigned char *sig,
1240 unsigned int *siglen,
1241 const BIGNUM *kinv, const BIGNUM *r,
1242 EC_KEY *eckey),
1243 int (**psign_setup)(EC_KEY *eckey, BN_CTX *ctx_in,
1244 BIGNUM **kinvp, BIGNUM **rp),
1245 ECDSA_SIG *(**psign_sig)(const unsigned char *dgst,
1246 int dgst_len,
1247 const BIGNUM *in_kinv,
1248 const BIGNUM *in_r,
1249 EC_KEY *eckey));
1250
1251void EC_KEY_METHOD_get_verify(EC_KEY_METHOD *meth,
1252 int (**pverify)(int type, const unsigned
1253 char *dgst, int dgst_len,
1254 const unsigned char *sigbuf,
1255 int sig_len, EC_KEY *eckey),
1256 int (**pverify_sig)(const unsigned char *dgst,
1257 int dgst_len,
1258 const ECDSA_SIG *sig,
1259 EC_KEY *eckey));
1260
0f113f3e 1261# define ECParameters_dup(x) ASN1_dup_of(EC_KEY,i2d_ECParameters,d2i_ECParameters,x)
458c2917 1262
0f113f3e
MC
1263# ifndef __cplusplus
1264# if defined(__SUNPRO_C)
1265# if __SUNPRO_C >= 0x520
1266# pragma error_messages (default,E_ARRAY_OF_INCOMPLETE_NONAME,E_ARRAY_OF_INCOMPLETE)
1267# endif
ad0db060
DSH
1268# endif
1269# endif
ad0db060 1270
0f113f3e
MC
1271# define EVP_PKEY_CTX_set_ec_paramgen_curve_nid(ctx, nid) \
1272 EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_EC, \
1273 EVP_PKEY_OP_PARAMGEN|EVP_PKEY_OP_KEYGEN, \
1274 EVP_PKEY_CTRL_EC_PARAMGEN_CURVE_NID, nid, NULL)
1275
1276# define EVP_PKEY_CTX_set_ec_param_enc(ctx, flag) \
1277 EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_EC, \
1278 EVP_PKEY_OP_PARAMGEN|EVP_PKEY_OP_KEYGEN, \
1279 EVP_PKEY_CTRL_EC_PARAM_ENC, flag, NULL)
1280
1281# define EVP_PKEY_CTX_set_ecdh_cofactor_mode(ctx, flag) \
1282 EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_EC, \
1283 EVP_PKEY_OP_DERIVE, \
1284 EVP_PKEY_CTRL_EC_ECDH_COFACTOR, flag, NULL)
1285
1286# define EVP_PKEY_CTX_get_ecdh_cofactor_mode(ctx) \
1287 EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_EC, \
1288 EVP_PKEY_OP_DERIVE, \
1289 EVP_PKEY_CTRL_EC_ECDH_COFACTOR, -2, NULL)
1290
1291# define EVP_PKEY_CTX_set_ecdh_kdf_type(ctx, kdf) \
1292 EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_EC, \
1293 EVP_PKEY_OP_DERIVE, \
1294 EVP_PKEY_CTRL_EC_KDF_TYPE, kdf, NULL)
1295
1296# define EVP_PKEY_CTX_get_ecdh_kdf_type(ctx) \
1297 EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_EC, \
1298 EVP_PKEY_OP_DERIVE, \
1299 EVP_PKEY_CTRL_EC_KDF_TYPE, -2, NULL)
1300
1301# define EVP_PKEY_CTX_set_ecdh_kdf_md(ctx, md) \
1302 EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_EC, \
1303 EVP_PKEY_OP_DERIVE, \
1304 EVP_PKEY_CTRL_EC_KDF_MD, 0, (void *)md)
1305
1306# define EVP_PKEY_CTX_get_ecdh_kdf_md(ctx, pmd) \
1307 EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_EC, \
1308 EVP_PKEY_OP_DERIVE, \
1309 EVP_PKEY_CTRL_GET_EC_KDF_MD, 0, (void *)pmd)
1310
1311# define EVP_PKEY_CTX_set_ecdh_kdf_outlen(ctx, len) \
1312 EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_EC, \
1313 EVP_PKEY_OP_DERIVE, \
1314 EVP_PKEY_CTRL_EC_KDF_OUTLEN, len, NULL)
1315
1316# define EVP_PKEY_CTX_get_ecdh_kdf_outlen(ctx, plen) \
1317 EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_EC, \
1318 EVP_PKEY_OP_DERIVE, \
1319 EVP_PKEY_CTRL_GET_EC_KDF_OUTLEN, 0, (void *)plen)
1320
1321# define EVP_PKEY_CTX_set0_ecdh_kdf_ukm(ctx, p, plen) \
1322 EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_EC, \
1323 EVP_PKEY_OP_DERIVE, \
1324 EVP_PKEY_CTRL_EC_KDF_UKM, plen, (void *)p)
1325
1326# define EVP_PKEY_CTX_get0_ecdh_kdf_ukm(ctx, p) \
1327 EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_EC, \
1328 EVP_PKEY_OP_DERIVE, \
1329 EVP_PKEY_CTRL_GET_EC_KDF_UKM, 0, (void *)p)
1330
1331# define EVP_PKEY_CTRL_EC_PARAMGEN_CURVE_NID (EVP_PKEY_ALG_CTRL + 1)
1332# define EVP_PKEY_CTRL_EC_PARAM_ENC (EVP_PKEY_ALG_CTRL + 2)
1333# define EVP_PKEY_CTRL_EC_ECDH_COFACTOR (EVP_PKEY_ALG_CTRL + 3)
1334# define EVP_PKEY_CTRL_EC_KDF_TYPE (EVP_PKEY_ALG_CTRL + 4)
1335# define EVP_PKEY_CTRL_EC_KDF_MD (EVP_PKEY_ALG_CTRL + 5)
1336# define EVP_PKEY_CTRL_GET_EC_KDF_MD (EVP_PKEY_ALG_CTRL + 6)
1337# define EVP_PKEY_CTRL_EC_KDF_OUTLEN (EVP_PKEY_ALG_CTRL + 7)
1338# define EVP_PKEY_CTRL_GET_EC_KDF_OUTLEN (EVP_PKEY_ALG_CTRL + 8)
1339# define EVP_PKEY_CTRL_EC_KDF_UKM (EVP_PKEY_ALG_CTRL + 9)
1340# define EVP_PKEY_CTRL_GET_EC_KDF_UKM (EVP_PKEY_ALG_CTRL + 10)
25af7a5d 1341/* KDF types */
0f113f3e
MC
1342# define EVP_PKEY_ECDH_KDF_NONE 1
1343# define EVP_PKEY_ECDH_KDF_X9_62 2
9ca7047d 1344
65e81670 1345/* BEGIN ERROR CODES */
0f113f3e
MC
1346/*
1347 * The following lines are auto generated by the script mkerr.pl. Any changes
65e81670
BM
1348 * made after this point may be overwritten when the script is next run.
1349 */
de10f690 1350void ERR_load_EC_strings(void);
6cc5e19d 1351
65e81670 1352/* Error codes for the EC functions. */
6cc5e19d 1353
65e81670 1354/* Function codes. */
0f113f3e
MC
1355# define EC_F_BN_TO_FELEM 224
1356# define EC_F_COMPUTE_WNAF 143
1357# define EC_F_D2I_ECPARAMETERS 144
1358# define EC_F_D2I_ECPKPARAMETERS 145
1359# define EC_F_D2I_ECPRIVATEKEY 146
1360# define EC_F_DO_EC_KEY_PRINT 221
1361# define EC_F_ECDH_CMS_DECRYPT 238
1362# define EC_F_ECDH_CMS_SET_SHARED_INFO 239
53e3189d 1363# define EC_F_ECDH_COMPUTE_KEY 246
6e73d12e
DSH
1364# define EC_F_ECDSA_DO_SIGN_EX 251
1365# define EC_F_ECDSA_DO_VERIFY 252
89313de5 1366# define EC_F_ECDSA_SIGN_EX 254
8c661f76 1367# define EC_F_ECDSA_SIGN_SETUP 248
89313de5 1368# define EC_F_ECDSA_VERIFY 253
0f113f3e
MC
1369# define EC_F_ECKEY_PARAM2TYPE 223
1370# define EC_F_ECKEY_PARAM_DECODE 212
1371# define EC_F_ECKEY_PRIV_DECODE 213
1372# define EC_F_ECKEY_PRIV_ENCODE 214
1373# define EC_F_ECKEY_PUB_DECODE 215
1374# define EC_F_ECKEY_PUB_ENCODE 216
1375# define EC_F_ECKEY_TYPE2PARAM 220
1376# define EC_F_ECPARAMETERS_PRINT 147
1377# define EC_F_ECPARAMETERS_PRINT_FP 148
1378# define EC_F_ECPKPARAMETERS_PRINT 149
1379# define EC_F_ECPKPARAMETERS_PRINT_FP 150
d2fa70d8
DSH
1380# define EC_F_ECP_NISTZ256_GET_AFFINE 240
1381# define EC_F_ECP_NISTZ256_MULT_PRECOMPUTE 243
1382# define EC_F_ECP_NISTZ256_POINTS_MUL 241
1383# define EC_F_ECP_NISTZ256_PRE_COMP_NEW 244
1384# define EC_F_ECP_NISTZ256_WINDOWED_MUL 242
0f113f3e
MC
1385# define EC_F_ECP_NIST_MOD_192 203
1386# define EC_F_ECP_NIST_MOD_224 204
1387# define EC_F_ECP_NIST_MOD_256 205
1388# define EC_F_ECP_NIST_MOD_521 206
1389# define EC_F_EC_ASN1_GROUP2CURVE 153
1390# define EC_F_EC_ASN1_GROUP2FIELDID 154
1391# define EC_F_EC_ASN1_GROUP2PARAMETERS 155
1392# define EC_F_EC_ASN1_GROUP2PKPARAMETERS 156
1393# define EC_F_EC_ASN1_PARAMETERS2GROUP 157
1394# define EC_F_EC_ASN1_PKPARAMETERS2GROUP 158
1395# define EC_F_EC_EX_DATA_SET_DATA 211
1396# define EC_F_EC_GF2M_MONTGOMERY_POINT_MULTIPLY 208
1397# define EC_F_EC_GF2M_SIMPLE_GROUP_CHECK_DISCRIMINANT 159
1398# define EC_F_EC_GF2M_SIMPLE_GROUP_SET_CURVE 195
1399# define EC_F_EC_GF2M_SIMPLE_OCT2POINT 160
1400# define EC_F_EC_GF2M_SIMPLE_POINT2OCT 161
1401# define EC_F_EC_GF2M_SIMPLE_POINT_GET_AFFINE_COORDINATES 162
1402# define EC_F_EC_GF2M_SIMPLE_POINT_SET_AFFINE_COORDINATES 163
1403# define EC_F_EC_GF2M_SIMPLE_SET_COMPRESSED_COORDINATES 164
1404# define EC_F_EC_GFP_MONT_FIELD_DECODE 133
1405# define EC_F_EC_GFP_MONT_FIELD_ENCODE 134
1406# define EC_F_EC_GFP_MONT_FIELD_MUL 131
1407# define EC_F_EC_GFP_MONT_FIELD_SET_TO_ONE 209
1408# define EC_F_EC_GFP_MONT_FIELD_SQR 132
1409# define EC_F_EC_GFP_MONT_GROUP_SET_CURVE 189
1410# define EC_F_EC_GFP_MONT_GROUP_SET_CURVE_GFP 135
1411# define EC_F_EC_GFP_NISTP224_GROUP_SET_CURVE 225
1412# define EC_F_EC_GFP_NISTP224_POINTS_MUL 228
1413# define EC_F_EC_GFP_NISTP224_POINT_GET_AFFINE_COORDINATES 226
1414# define EC_F_EC_GFP_NISTP256_GROUP_SET_CURVE 230
1415# define EC_F_EC_GFP_NISTP256_POINTS_MUL 231
1416# define EC_F_EC_GFP_NISTP256_POINT_GET_AFFINE_COORDINATES 232
1417# define EC_F_EC_GFP_NISTP521_GROUP_SET_CURVE 233
1418# define EC_F_EC_GFP_NISTP521_POINTS_MUL 234
1419# define EC_F_EC_GFP_NISTP521_POINT_GET_AFFINE_COORDINATES 235
1420# define EC_F_EC_GFP_NIST_FIELD_MUL 200
1421# define EC_F_EC_GFP_NIST_FIELD_SQR 201
1422# define EC_F_EC_GFP_NIST_GROUP_SET_CURVE 202
1423# define EC_F_EC_GFP_SIMPLE_GROUP_CHECK_DISCRIMINANT 165
1424# define EC_F_EC_GFP_SIMPLE_GROUP_SET_CURVE 166
1425# define EC_F_EC_GFP_SIMPLE_GROUP_SET_CURVE_GFP 100
1426# define EC_F_EC_GFP_SIMPLE_GROUP_SET_GENERATOR 101
1427# define EC_F_EC_GFP_SIMPLE_MAKE_AFFINE 102
1428# define EC_F_EC_GFP_SIMPLE_OCT2POINT 103
1429# define EC_F_EC_GFP_SIMPLE_POINT2OCT 104
1430# define EC_F_EC_GFP_SIMPLE_POINTS_MAKE_AFFINE 137
1431# define EC_F_EC_GFP_SIMPLE_POINT_GET_AFFINE_COORDINATES 167
1432# define EC_F_EC_GFP_SIMPLE_POINT_GET_AFFINE_COORDINATES_GFP 105
1433# define EC_F_EC_GFP_SIMPLE_POINT_SET_AFFINE_COORDINATES 168
1434# define EC_F_EC_GFP_SIMPLE_POINT_SET_AFFINE_COORDINATES_GFP 128
1435# define EC_F_EC_GFP_SIMPLE_SET_COMPRESSED_COORDINATES 169
1436# define EC_F_EC_GFP_SIMPLE_SET_COMPRESSED_COORDINATES_GFP 129
1437# define EC_F_EC_GROUP_CHECK 170
1438# define EC_F_EC_GROUP_CHECK_DISCRIMINANT 171
1439# define EC_F_EC_GROUP_COPY 106
1440# define EC_F_EC_GROUP_GET0_GENERATOR 139
1441# define EC_F_EC_GROUP_GET_COFACTOR 140
1442# define EC_F_EC_GROUP_GET_CURVE_GF2M 172
1443# define EC_F_EC_GROUP_GET_CURVE_GFP 130
1444# define EC_F_EC_GROUP_GET_DEGREE 173
1445# define EC_F_EC_GROUP_GET_ORDER 141
1446# define EC_F_EC_GROUP_GET_PENTANOMIAL_BASIS 193
1447# define EC_F_EC_GROUP_GET_TRINOMIAL_BASIS 194
1448# define EC_F_EC_GROUP_NEW 108
1449# define EC_F_EC_GROUP_NEW_BY_CURVE_NAME 174
1450# define EC_F_EC_GROUP_NEW_FROM_DATA 175
1451# define EC_F_EC_GROUP_PRECOMPUTE_MULT 142
1452# define EC_F_EC_GROUP_SET_CURVE_GF2M 176
1453# define EC_F_EC_GROUP_SET_CURVE_GFP 109
1454# define EC_F_EC_GROUP_SET_EXTRA_DATA 110
1455# define EC_F_EC_GROUP_SET_GENERATOR 111
1456# define EC_F_EC_KEY_CHECK_KEY 177
1457# define EC_F_EC_KEY_COPY 178
1458# define EC_F_EC_KEY_GENERATE_KEY 179
1459# define EC_F_EC_KEY_NEW 182
d2fa70d8 1460# define EC_F_EC_KEY_NEW_METHOD 245
0f113f3e
MC
1461# define EC_F_EC_KEY_PRINT 180
1462# define EC_F_EC_KEY_PRINT_FP 181
1463# define EC_F_EC_KEY_SET_PUBLIC_KEY_AFFINE_COORDINATES 229
1464# define EC_F_EC_POINTS_MAKE_AFFINE 136
1465# define EC_F_EC_POINT_ADD 112
1466# define EC_F_EC_POINT_CMP 113
1467# define EC_F_EC_POINT_COPY 114
1468# define EC_F_EC_POINT_DBL 115
1469# define EC_F_EC_POINT_GET_AFFINE_COORDINATES_GF2M 183
1470# define EC_F_EC_POINT_GET_AFFINE_COORDINATES_GFP 116
1471# define EC_F_EC_POINT_GET_JPROJECTIVE_COORDINATES_GFP 117
1472# define EC_F_EC_POINT_INVERT 210
1473# define EC_F_EC_POINT_IS_AT_INFINITY 118
1474# define EC_F_EC_POINT_IS_ON_CURVE 119
1475# define EC_F_EC_POINT_MAKE_AFFINE 120
1476# define EC_F_EC_POINT_MUL 184
1477# define EC_F_EC_POINT_NEW 121
1478# define EC_F_EC_POINT_OCT2POINT 122
1479# define EC_F_EC_POINT_POINT2OCT 123
1480# define EC_F_EC_POINT_SET_AFFINE_COORDINATES_GF2M 185
1481# define EC_F_EC_POINT_SET_AFFINE_COORDINATES_GFP 124
1482# define EC_F_EC_POINT_SET_COMPRESSED_COORDINATES_GF2M 186
1483# define EC_F_EC_POINT_SET_COMPRESSED_COORDINATES_GFP 125
1484# define EC_F_EC_POINT_SET_JPROJECTIVE_COORDINATES_GFP 126
1485# define EC_F_EC_POINT_SET_TO_INFINITY 127
1486# define EC_F_EC_PRE_COMP_DUP 207
1487# define EC_F_EC_PRE_COMP_NEW 196
1488# define EC_F_EC_WNAF_MUL 187
1489# define EC_F_EC_WNAF_PRECOMPUTE_MULT 188
1490# define EC_F_I2D_ECPARAMETERS 190
1491# define EC_F_I2D_ECPKPARAMETERS 191
1492# define EC_F_I2D_ECPRIVATEKEY 192
1493# define EC_F_I2O_ECPUBLICKEY 151
1494# define EC_F_NISTP224_PRE_COMP_NEW 227
1495# define EC_F_NISTP256_PRE_COMP_NEW 236
1496# define EC_F_NISTP521_PRE_COMP_NEW 237
0f113f3e
MC
1497# define EC_F_O2I_ECPUBLICKEY 152
1498# define EC_F_OLD_EC_PRIV_DECODE 222
53e3189d 1499# define EC_F_OSSL_ECDH_COMPUTE_KEY 247
8c661f76
DSH
1500# define EC_F_OSSL_ECDSA_SIGN_SIG 249
1501# define EC_F_OSSL_ECDSA_VERIFY_SIG 250
0f113f3e
MC
1502# define EC_F_PKEY_EC_CTRL 197
1503# define EC_F_PKEY_EC_CTRL_STR 198
1504# define EC_F_PKEY_EC_DERIVE 217
1505# define EC_F_PKEY_EC_KEYGEN 199
1506# define EC_F_PKEY_EC_PARAMGEN 219
1507# define EC_F_PKEY_EC_SIGN 218
6cc5e19d 1508
65e81670 1509/* Reason codes. */
0f113f3e
MC
1510# define EC_R_ASN1_ERROR 115
1511# define EC_R_ASN1_UNKNOWN_FIELD 116
8c661f76 1512# define EC_R_BAD_SIGNATURE 156
0f113f3e
MC
1513# define EC_R_BIGNUM_OUT_OF_RANGE 144
1514# define EC_R_BUFFER_TOO_SMALL 100
1515# define EC_R_COORDINATES_OUT_OF_RANGE 146
1516# define EC_R_D2I_ECPKPARAMETERS_FAILURE 117
1517# define EC_R_DECODE_ERROR 142
1518# define EC_R_DISCRIMINANT_IS_ZERO 118
1519# define EC_R_EC_GROUP_NEW_BY_NAME_FAILURE 119
1520# define EC_R_FIELD_TOO_LARGE 143
1521# define EC_R_GF2M_NOT_SUPPORTED 147
1522# define EC_R_GROUP2PKPARAMETERS_FAILURE 120
1523# define EC_R_I2D_ECPKPARAMETERS_FAILURE 121
1524# define EC_R_INCOMPATIBLE_OBJECTS 101
1525# define EC_R_INVALID_ARGUMENT 112
1526# define EC_R_INVALID_COMPRESSED_POINT 110
1527# define EC_R_INVALID_COMPRESSION_BIT 109
1528# define EC_R_INVALID_CURVE 141
1529# define EC_R_INVALID_DIGEST 151
1530# define EC_R_INVALID_DIGEST_TYPE 138
1531# define EC_R_INVALID_ENCODING 102
1532# define EC_R_INVALID_FIELD 103
1533# define EC_R_INVALID_FORM 104
1534# define EC_R_INVALID_GROUP_ORDER 122
1535# define EC_R_INVALID_PENTANOMIAL_BASIS 132
1536# define EC_R_INVALID_PRIVATE_KEY 123
1537# define EC_R_INVALID_TRINOMIAL_BASIS 137
53e3189d 1538# define EC_R_KDF_FAILED 153
0f113f3e
MC
1539# define EC_R_KDF_PARAMETER_ERROR 148
1540# define EC_R_KEYS_NOT_SET 140
1541# define EC_R_MISSING_PARAMETERS 124
1542# define EC_R_MISSING_PRIVATE_KEY 125
8c661f76 1543# define EC_R_NEED_NEW_SETUP_VALUES 157
0f113f3e
MC
1544# define EC_R_NOT_A_NIST_PRIME 135
1545# define EC_R_NOT_A_SUPPORTED_NIST_PRIME 136
1546# define EC_R_NOT_IMPLEMENTED 126
1547# define EC_R_NOT_INITIALIZED 111
1548# define EC_R_NO_FIELD_MOD 133
1549# define EC_R_NO_PARAMETERS_SET 139
53e3189d 1550# define EC_R_NO_PRIVATE_VALUE 154
5a6a1029 1551# define EC_R_OPERATION_NOT_SUPPORTED 152
0f113f3e
MC
1552# define EC_R_PASSED_NULL_PARAMETER 134
1553# define EC_R_PEER_KEY_ERROR 149
1554# define EC_R_PKPARAMETERS2GROUP_FAILURE 127
53e3189d 1555# define EC_R_POINT_ARITHMETIC_FAILURE 155
0f113f3e
MC
1556# define EC_R_POINT_AT_INFINITY 106
1557# define EC_R_POINT_IS_NOT_ON_CURVE 107
8c661f76 1558# define EC_R_RANDOM_NUMBER_GENERATION_FAILED 158
0f113f3e
MC
1559# define EC_R_SHARED_INFO_ERROR 150
1560# define EC_R_SLOT_FULL 108
1561# define EC_R_UNDEFINED_GENERATOR 113
1562# define EC_R_UNDEFINED_ORDER 128
1563# define EC_R_UNKNOWN_GROUP 129
1564# define EC_R_UNKNOWN_ORDER 114
1565# define EC_R_UNSUPPORTED_FIELD 131
1566# define EC_R_WRONG_CURVE_PARAMETERS 145
1567# define EC_R_WRONG_ORDER 130
6cc5e19d 1568
65e81670
BM
1569#ifdef __cplusplus
1570}
1571#endif
5acaa495 1572#endif