blob: b34605fd11c0f59f5e975497811b583c2155b682 [file] [log] [blame]
Adam Langleyd9e397b2015-01-22 14:27:53 -08001/* Originally written by Bodo Moeller for the OpenSSL project.
2 * ====================================================================
3 * Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 *
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in
14 * the documentation and/or other materials provided with the
15 * distribution.
16 *
17 * 3. All advertising materials mentioning features or use of this
18 * software must display the following acknowledgment:
19 * "This product includes software developed by the OpenSSL Project
20 * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
21 *
22 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
23 * endorse or promote products derived from this software without
24 * prior written permission. For written permission, please contact
25 * openssl-core@openssl.org.
26 *
27 * 5. Products derived from this software may not be called "OpenSSL"
28 * nor may "OpenSSL" appear in their names without prior written
29 * permission of the OpenSSL Project.
30 *
31 * 6. Redistributions of any form whatsoever must retain the following
32 * acknowledgment:
33 * "This product includes software developed by the OpenSSL Project
34 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
35 *
36 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
37 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
38 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
39 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
40 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
41 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
42 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
43 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
44 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
45 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
46 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
47 * OF THE POSSIBILITY OF SUCH DAMAGE.
48 * ====================================================================
49 *
50 * This product includes cryptographic software written by Eric Young
51 * (eay@cryptsoft.com). This product includes software written by Tim
52 * Hudson (tjh@cryptsoft.com).
53 *
54 */
55/* ====================================================================
56 * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
57 *
58 * Portions of the attached software ("Contribution") are developed by
59 * SUN MICROSYSTEMS, INC., and are contributed to the OpenSSL project.
60 *
61 * The Contribution is licensed pursuant to the OpenSSL open source
62 * license provided above.
63 *
64 * The elliptic curve binary polynomial software is originally written by
65 * Sheueling Chang Shantz and Douglas Stebila of Sun Microsystems
66 * Laboratories. */
67
68#ifndef OPENSSL_HEADER_EC_H
69#define OPENSSL_HEADER_EC_H
70
71#include <openssl/base.h>
72
73#if defined(__cplusplus)
74extern "C" {
75#endif
76
77
Robert Sloan8f860b12017-08-28 07:37:06 -070078// Low-level operations on elliptic curves.
Adam Langleyd9e397b2015-01-22 14:27:53 -080079
80
Robert Sloan8f860b12017-08-28 07:37:06 -070081// point_conversion_form_t enumerates forms, as defined in X9.62 (ECDSA), for
82// the encoding of a elliptic curve point (x,y)
Adam Langleyd9e397b2015-01-22 14:27:53 -080083typedef enum {
Robert Sloan8f860b12017-08-28 07:37:06 -070084 // POINT_CONVERSION_COMPRESSED indicates that the point is encoded as z||x,
85 // where the octet z specifies which solution of the quadratic equation y
86 // is.
David Benjamin4969cc92016-04-22 15:02:23 -040087 POINT_CONVERSION_COMPRESSED = 2,
88
Robert Sloan8f860b12017-08-28 07:37:06 -070089 // POINT_CONVERSION_UNCOMPRESSED indicates that the point is encoded as
90 // z||x||y, where z is the octet 0x04.
David Benjamin4969cc92016-04-22 15:02:23 -040091 POINT_CONVERSION_UNCOMPRESSED = 4,
92
Robert Sloan8f860b12017-08-28 07:37:06 -070093 // POINT_CONVERSION_HYBRID indicates that the point is encoded as z||x||y,
94 // where z specifies which solution of the quadratic equation y is. This is
95 // not supported by the code and has never been observed in use.
96 //
97 // TODO(agl): remove once node.js no longer references this.
David Benjamin4969cc92016-04-22 15:02:23 -040098 POINT_CONVERSION_HYBRID = 6,
Adam Langleyd9e397b2015-01-22 14:27:53 -080099} point_conversion_form_t;
100
101
Robert Sloan8f860b12017-08-28 07:37:06 -0700102// Elliptic curve groups.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800103
Robert Sloan8f860b12017-08-28 07:37:06 -0700104// EC_GROUP_new_by_curve_name returns a fresh EC_GROUP object for the elliptic
105// curve specified by |nid|, or NULL on error.
106//
107// The supported NIDs are:
108// NID_secp224r1,
109// NID_X9_62_prime256v1,
110// NID_secp384r1,
111// NID_secp521r1
Adam Langleyd9e397b2015-01-22 14:27:53 -0800112OPENSSL_EXPORT EC_GROUP *EC_GROUP_new_by_curve_name(int nid);
113
Robert Sloan8f860b12017-08-28 07:37:06 -0700114// EC_GROUP_free frees |group| and the data that it points to.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800115OPENSSL_EXPORT void EC_GROUP_free(EC_GROUP *group);
116
Robert Sloan8f860b12017-08-28 07:37:06 -0700117// EC_GROUP_dup returns a fresh |EC_GROUP| which is equal to |a| or NULL on
118// error.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800119OPENSSL_EXPORT EC_GROUP *EC_GROUP_dup(const EC_GROUP *a);
120
Robert Sloan8f860b12017-08-28 07:37:06 -0700121// EC_GROUP_cmp returns zero if |a| and |b| are the same group and non-zero
122// otherwise.
Adam Langley4c6611d2015-02-25 11:15:39 -0800123OPENSSL_EXPORT int EC_GROUP_cmp(const EC_GROUP *a, const EC_GROUP *b,
124 BN_CTX *ignored);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800125
Robert Sloan8f860b12017-08-28 07:37:06 -0700126// EC_GROUP_get0_generator returns a pointer to the internal |EC_POINT| object
127// in |group| that specifies the generator for the group.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800128OPENSSL_EXPORT const EC_POINT *EC_GROUP_get0_generator(const EC_GROUP *group);
129
Robert Sloan8f860b12017-08-28 07:37:06 -0700130// EC_GROUP_get0_order returns a pointer to the internal |BIGNUM| object in
131// |group| that specifies the order of the group.
Adam Langley4139edb2016-01-13 15:00:54 -0800132OPENSSL_EXPORT const BIGNUM *EC_GROUP_get0_order(const EC_GROUP *group);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800133
Robert Sloan8f860b12017-08-28 07:37:06 -0700134// EC_GROUP_get_cofactor sets |*cofactor| to the cofactor of |group| using
135// |ctx|, if it's not NULL. It returns one on success and zero otherwise.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800136OPENSSL_EXPORT int EC_GROUP_get_cofactor(const EC_GROUP *group,
137 BIGNUM *cofactor, BN_CTX *ctx);
138
Robert Sloan8f860b12017-08-28 07:37:06 -0700139// EC_GROUP_get_curve_GFp gets various parameters about a group. It sets
140// |*out_p| to the order of the coordinate field and |*out_a| and |*out_b| to
141// the parameters of the curve when expressed as y² = x³ + ax + b. Any of the
142// output parameters can be NULL. It returns one on success and zero on
143// error.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800144OPENSSL_EXPORT int EC_GROUP_get_curve_GFp(const EC_GROUP *group, BIGNUM *out_p,
145 BIGNUM *out_a, BIGNUM *out_b,
146 BN_CTX *ctx);
147
Robert Sloan8f860b12017-08-28 07:37:06 -0700148// EC_GROUP_get_curve_name returns a NID that identifies |group|.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800149OPENSSL_EXPORT int EC_GROUP_get_curve_name(const EC_GROUP *group);
150
Robert Sloan8f860b12017-08-28 07:37:06 -0700151// EC_GROUP_get_degree returns the number of bits needed to represent an
152// element of the field underlying |group|.
Kenny Roote99801b2015-11-06 15:31:15 -0800153OPENSSL_EXPORT unsigned EC_GROUP_get_degree(const EC_GROUP *group);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800154
Adam Langleyd9e397b2015-01-22 14:27:53 -0800155
Robert Sloan8f860b12017-08-28 07:37:06 -0700156// Points on elliptic curves.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800157
Robert Sloan8f860b12017-08-28 07:37:06 -0700158// EC_POINT_new returns a fresh |EC_POINT| object in the given group, or NULL
159// on error.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800160OPENSSL_EXPORT EC_POINT *EC_POINT_new(const EC_GROUP *group);
161
Robert Sloan8f860b12017-08-28 07:37:06 -0700162// EC_POINT_free frees |point| and the data that it points to.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800163OPENSSL_EXPORT void EC_POINT_free(EC_POINT *point);
164
Robert Sloan8f860b12017-08-28 07:37:06 -0700165// EC_POINT_copy sets |*dest| equal to |*src|. It returns one on success and
166// zero otherwise.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800167OPENSSL_EXPORT int EC_POINT_copy(EC_POINT *dest, const EC_POINT *src);
168
Robert Sloan8f860b12017-08-28 07:37:06 -0700169// EC_POINT_dup returns a fresh |EC_POINT| that contains the same values as
170// |src|, or NULL on error.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800171OPENSSL_EXPORT EC_POINT *EC_POINT_dup(const EC_POINT *src,
172 const EC_GROUP *group);
173
Robert Sloan8f860b12017-08-28 07:37:06 -0700174// EC_POINT_set_to_infinity sets |point| to be the "point at infinity" for the
175// given group.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800176OPENSSL_EXPORT int EC_POINT_set_to_infinity(const EC_GROUP *group,
177 EC_POINT *point);
178
Robert Sloan8f860b12017-08-28 07:37:06 -0700179// EC_POINT_is_at_infinity returns one iff |point| is the point at infinity and
180// zero otherwise.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800181OPENSSL_EXPORT int EC_POINT_is_at_infinity(const EC_GROUP *group,
182 const EC_POINT *point);
183
Robert Sloan8f860b12017-08-28 07:37:06 -0700184// EC_POINT_is_on_curve returns one if |point| is an element of |group| and
185// and zero otherwise or when an error occurs. This is different from OpenSSL,
186// which returns -1 on error. If |ctx| is non-NULL, it may be used.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800187OPENSSL_EXPORT int EC_POINT_is_on_curve(const EC_GROUP *group,
188 const EC_POINT *point, BN_CTX *ctx);
189
Robert Sloan8f860b12017-08-28 07:37:06 -0700190// EC_POINT_cmp returns zero if |a| is equal to |b|, greater than zero if
191// not equal and -1 on error. If |ctx| is not NULL, it may be used.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800192OPENSSL_EXPORT int EC_POINT_cmp(const EC_GROUP *group, const EC_POINT *a,
193 const EC_POINT *b, BN_CTX *ctx);
194
Robert Sloan8f860b12017-08-28 07:37:06 -0700195// EC_POINT_make_affine converts |point| to affine form, internally. It returns
196// one on success and zero otherwise. If |ctx| is not NULL, it may be used.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800197OPENSSL_EXPORT int EC_POINT_make_affine(const EC_GROUP *group, EC_POINT *point,
198 BN_CTX *ctx);
199
Robert Sloan8f860b12017-08-28 07:37:06 -0700200// EC_POINTs_make_affine converts |num| points from |points| to affine form,
201// internally. It returns one on success and zero otherwise. If |ctx| is not
202// NULL, it may be used.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800203OPENSSL_EXPORT int EC_POINTs_make_affine(const EC_GROUP *group, size_t num,
204 EC_POINT *points[], BN_CTX *ctx);
205
206
Robert Sloan8f860b12017-08-28 07:37:06 -0700207// Point conversion.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800208
Robert Sloan8f860b12017-08-28 07:37:06 -0700209// EC_POINT_get_affine_coordinates_GFp sets |x| and |y| to the affine value of
210// |point| using |ctx|, if it's not NULL. It returns one on success and zero
211// otherwise.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800212OPENSSL_EXPORT int EC_POINT_get_affine_coordinates_GFp(const EC_GROUP *group,
213 const EC_POINT *point,
214 BIGNUM *x, BIGNUM *y,
215 BN_CTX *ctx);
216
Robert Sloan8f860b12017-08-28 07:37:06 -0700217// EC_POINT_set_affine_coordinates_GFp sets the value of |point| to be
218// (|x|, |y|). The |ctx| argument may be used if not NULL. It returns one
219// on success or zero on error. Note that, unlike with OpenSSL, it's
220// considered an error if the point is not on the curve.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800221OPENSSL_EXPORT int EC_POINT_set_affine_coordinates_GFp(const EC_GROUP *group,
222 EC_POINT *point,
223 const BIGNUM *x,
224 const BIGNUM *y,
225 BN_CTX *ctx);
226
Robert Sloan8f860b12017-08-28 07:37:06 -0700227// EC_POINT_point2oct serialises |point| into the X9.62 form given by |form|
228// into, at most, |len| bytes at |buf|. It returns the number of bytes written
229// or zero on error if |buf| is non-NULL, else the number of bytes needed. The
230// |ctx| argument may be used if not NULL.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800231OPENSSL_EXPORT size_t EC_POINT_point2oct(const EC_GROUP *group,
232 const EC_POINT *point,
233 point_conversion_form_t form,
234 uint8_t *buf, size_t len, BN_CTX *ctx);
235
Robert Sloan8f860b12017-08-28 07:37:06 -0700236// EC_POINT_point2cbb behaves like |EC_POINT_point2oct| but appends the
237// serialised point to |cbb|. It returns one on success and zero on error.
David Benjamin4969cc92016-04-22 15:02:23 -0400238OPENSSL_EXPORT int EC_POINT_point2cbb(CBB *out, const EC_GROUP *group,
239 const EC_POINT *point,
240 point_conversion_form_t form,
241 BN_CTX *ctx);
242
Robert Sloan8f860b12017-08-28 07:37:06 -0700243// EC_POINT_oct2point sets |point| from |len| bytes of X9.62 format
244// serialisation in |buf|. It returns one on success and zero otherwise. The
245// |ctx| argument may be used if not NULL.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800246OPENSSL_EXPORT int EC_POINT_oct2point(const EC_GROUP *group, EC_POINT *point,
247 const uint8_t *buf, size_t len,
248 BN_CTX *ctx);
249
Robert Sloan8f860b12017-08-28 07:37:06 -0700250// EC_POINT_set_compressed_coordinates_GFp sets |point| to equal the point with
251// the given |x| coordinate and the y coordinate specified by |y_bit| (see
252// X9.62). It returns one on success and zero otherwise.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800253OPENSSL_EXPORT int EC_POINT_set_compressed_coordinates_GFp(
254 const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, int y_bit,
255 BN_CTX *ctx);
256
257
Robert Sloan8f860b12017-08-28 07:37:06 -0700258// Group operations.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800259
Robert Sloan8f860b12017-08-28 07:37:06 -0700260// EC_POINT_add sets |r| equal to |a| plus |b|. It returns one on success and
261// zero otherwise. If |ctx| is not NULL, it may be used.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800262OPENSSL_EXPORT int EC_POINT_add(const EC_GROUP *group, EC_POINT *r,
263 const EC_POINT *a, const EC_POINT *b,
264 BN_CTX *ctx);
265
Robert Sloan8f860b12017-08-28 07:37:06 -0700266// EC_POINT_dbl sets |r| equal to |a| plus |a|. It returns one on success and
267// zero otherwise. If |ctx| is not NULL, it may be used.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800268OPENSSL_EXPORT int EC_POINT_dbl(const EC_GROUP *group, EC_POINT *r,
269 const EC_POINT *a, BN_CTX *ctx);
270
Robert Sloan8f860b12017-08-28 07:37:06 -0700271// EC_POINT_invert sets |a| equal to minus |a|. It returns one on success and
272// zero otherwise. If |ctx| is not NULL, it may be used.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800273OPENSSL_EXPORT int EC_POINT_invert(const EC_GROUP *group, EC_POINT *a,
274 BN_CTX *ctx);
275
Robert Sloan8f860b12017-08-28 07:37:06 -0700276// EC_POINT_mul sets r = generator*n + q*m. It returns one on success and zero
277// otherwise. If |ctx| is not NULL, it may be used.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800278OPENSSL_EXPORT int EC_POINT_mul(const EC_GROUP *group, EC_POINT *r,
279 const BIGNUM *n, const EC_POINT *q,
280 const BIGNUM *m, BN_CTX *ctx);
281
Adam Langleyd9e397b2015-01-22 14:27:53 -0800282
Robert Sloan8f860b12017-08-28 07:37:06 -0700283// Deprecated functions.
Adam Langleyf7e890d2015-03-31 18:58:05 -0700284
Robert Sloan8f860b12017-08-28 07:37:06 -0700285// EC_GROUP_new_curve_GFp creates a new, arbitrary elliptic curve group based
286// on the equation y² = x³ + a·x + b. It returns the new group or NULL on
287// error.
288//
289// This new group has no generator. It is an error to use a generator-less group
290// with any functions except for |EC_GROUP_free|, |EC_POINT_new|,
291// |EC_POINT_set_affine_coordinates_GFp|, and |EC_GROUP_set_generator|.
292//
293// |EC_GROUP|s returned by this function will always compare as unequal via
294// |EC_GROUP_cmp| (even to themselves). |EC_GROUP_get_curve_name| will always
295// return |NID_undef|.
296//
297// Avoid using arbitrary curves and use |EC_GROUP_new_by_curve_name| instead.
Adam Langley430091c2015-05-12 19:09:47 -0700298OPENSSL_EXPORT EC_GROUP *EC_GROUP_new_curve_GFp(const BIGNUM *p,
299 const BIGNUM *a,
300 const BIGNUM *b, BN_CTX *ctx);
301
Robert Sloan8f860b12017-08-28 07:37:06 -0700302// EC_GROUP_set_generator sets the generator for |group| to |generator|, which
303// must have the given order and cofactor. It may only be used with |EC_GROUP|
304// objects returned by |EC_GROUP_new_curve_GFp| and may only be used once on
Robert Sloan29c1d2c2017-10-30 14:10:28 -0700305// each group. |generator| must have been created using |group|.
David Benjamin4969cc92016-04-22 15:02:23 -0400306OPENSSL_EXPORT int EC_GROUP_set_generator(EC_GROUP *group,
307 const EC_POINT *generator,
308 const BIGNUM *order,
309 const BIGNUM *cofactor);
310
Robert Sloan8f860b12017-08-28 07:37:06 -0700311// EC_GROUP_get_order sets |*order| to the order of |group|, if it's not
312// NULL. It returns one on success and zero otherwise. |ctx| is ignored. Use
313// |EC_GROUP_get0_order| instead.
Adam Langley4139edb2016-01-13 15:00:54 -0800314OPENSSL_EXPORT int EC_GROUP_get_order(const EC_GROUP *group, BIGNUM *order,
315 BN_CTX *ctx);
316
Robert Sloan8f860b12017-08-28 07:37:06 -0700317// EC_GROUP_set_asn1_flag does nothing.
Adam Langleyf7e890d2015-03-31 18:58:05 -0700318OPENSSL_EXPORT void EC_GROUP_set_asn1_flag(EC_GROUP *group, int flag);
319
320#define OPENSSL_EC_NAMED_CURVE 0
321
322typedef struct ec_method_st EC_METHOD;
323
Robert Sloan8f860b12017-08-28 07:37:06 -0700324// EC_GROUP_method_of returns NULL.
Adam Langleyf7e890d2015-03-31 18:58:05 -0700325OPENSSL_EXPORT const EC_METHOD *EC_GROUP_method_of(const EC_GROUP *group);
326
Robert Sloan8f860b12017-08-28 07:37:06 -0700327// EC_METHOD_get_field_type returns NID_X9_62_prime_field.
Adam Langleyf7e890d2015-03-31 18:58:05 -0700328OPENSSL_EXPORT int EC_METHOD_get_field_type(const EC_METHOD *meth);
329
Robert Sloan8f860b12017-08-28 07:37:06 -0700330// EC_GROUP_set_point_conversion_form aborts the process if |form| is not
331// |POINT_CONVERSION_UNCOMPRESSED| and otherwise does nothing.
Adam Langley217eaab2015-04-21 11:00:35 -0700332OPENSSL_EXPORT void EC_GROUP_set_point_conversion_form(
333 EC_GROUP *group, point_conversion_form_t form);
Adam Langley830beae2015-04-20 10:49:33 -0700334
Robert Sloan8f860b12017-08-28 07:37:06 -0700335// EC_builtin_curve describes a supported elliptic curve.
David Benjamin4969cc92016-04-22 15:02:23 -0400336typedef struct {
337 int nid;
338 const char *comment;
339} EC_builtin_curve;
340
Robert Sloan8f860b12017-08-28 07:37:06 -0700341// EC_get_builtin_curves writes at most |max_num_curves| elements to
342// |out_curves| and returns the total number that it would have written, had
343// |max_num_curves| been large enough.
344//
345// The |EC_builtin_curve| items describe the supported elliptic curves.
David Benjamin4969cc92016-04-22 15:02:23 -0400346OPENSSL_EXPORT size_t EC_get_builtin_curves(EC_builtin_curve *out_curves,
347 size_t max_num_curves);
Adam Langleyf7e890d2015-03-31 18:58:05 -0700348
Robert Sloan29c1d2c2017-10-30 14:10:28 -0700349// EC_POINT_clear_free calls |EC_POINT_free|.
350OPENSSL_EXPORT void EC_POINT_clear_free(EC_POINT *point);
351
Robert Sloan8f860b12017-08-28 07:37:06 -0700352// Old code expects to get EC_KEY from ec.h.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800353#include <openssl/ec_key.h>
Adam Langleyd9e397b2015-01-22 14:27:53 -0800354
355
356#if defined(__cplusplus)
Robert Sloan8f860b12017-08-28 07:37:06 -0700357} // extern C
David Benjaminf0c4a6c2016-08-11 13:26:41 -0400358
359extern "C++" {
360
361namespace bssl {
362
363BORINGSSL_MAKE_DELETER(EC_POINT, EC_POINT_free)
364BORINGSSL_MAKE_DELETER(EC_GROUP, EC_GROUP_free)
365
366} // namespace bssl
367
Robert Sloan8f860b12017-08-28 07:37:06 -0700368} // extern C++
David Benjaminf0c4a6c2016-08-11 13:26:41 -0400369
Adam Langleyd9e397b2015-01-22 14:27:53 -0800370#endif
371
Adam Langleye9ada862015-05-11 17:20:37 -0700372#define EC_R_BUFFER_TOO_SMALL 100
373#define EC_R_COORDINATES_OUT_OF_RANGE 101
374#define EC_R_D2I_ECPKPARAMETERS_FAILURE 102
375#define EC_R_EC_GROUP_NEW_BY_NAME_FAILURE 103
376#define EC_R_GROUP2PKPARAMETERS_FAILURE 104
377#define EC_R_I2D_ECPKPARAMETERS_FAILURE 105
378#define EC_R_INCOMPATIBLE_OBJECTS 106
379#define EC_R_INVALID_COMPRESSED_POINT 107
380#define EC_R_INVALID_COMPRESSION_BIT 108
381#define EC_R_INVALID_ENCODING 109
382#define EC_R_INVALID_FIELD 110
383#define EC_R_INVALID_FORM 111
384#define EC_R_INVALID_GROUP_ORDER 112
385#define EC_R_INVALID_PRIVATE_KEY 113
386#define EC_R_MISSING_PARAMETERS 114
387#define EC_R_MISSING_PRIVATE_KEY 115
388#define EC_R_NON_NAMED_CURVE 116
389#define EC_R_NOT_INITIALIZED 117
390#define EC_R_PKPARAMETERS2GROUP_FAILURE 118
391#define EC_R_POINT_AT_INFINITY 119
392#define EC_R_POINT_IS_NOT_ON_CURVE 120
393#define EC_R_SLOT_FULL 121
394#define EC_R_UNDEFINED_GENERATOR 122
395#define EC_R_UNKNOWN_GROUP 123
396#define EC_R_UNKNOWN_ORDER 124
397#define EC_R_WRONG_ORDER 125
398#define EC_R_BIGNUM_OUT_OF_RANGE 126
399#define EC_R_WRONG_CURVE_PARAMETERS 127
David Benjamin4969cc92016-04-22 15:02:23 -0400400#define EC_R_DECODE_ERROR 128
401#define EC_R_ENCODE_ERROR 129
402#define EC_R_GROUP_MISMATCH 130
David Benjaminc895d6b2016-08-11 13:26:41 -0400403#define EC_R_INVALID_COFACTOR 131
Robert Sloan572a4e22017-04-17 10:52:19 -0700404#define EC_R_PUBLIC_KEY_VALIDATION_FAILED 132
Robert Sloan99319a12017-11-27 10:32:46 -0800405#define EC_R_INVALID_SCALAR 133
Adam Langleyd9e397b2015-01-22 14:27:53 -0800406
Robert Sloan8f860b12017-08-28 07:37:06 -0700407#endif // OPENSSL_HEADER_EC_H