blob: c198cc292508034c5c617b9ab64b388ed1ad5bd9 [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_INTERNAL_H
69#define OPENSSL_HEADER_EC_INTERNAL_H
70
71#include <openssl/base.h>
72
73#include <openssl/bn.h>
74#include <openssl/ex_data.h>
Adam Langleyf4e42722015-06-04 17:45:09 -070075#include <openssl/thread.h>
Robert Sloan99319a12017-11-27 10:32:46 -080076#include <openssl/type_check.h>
77
78#include "../bn/internal.h"
Adam Langleyd9e397b2015-01-22 14:27:53 -080079
80#if defined(__cplusplus)
81extern "C" {
82#endif
83
84
Robert Sloan99319a12017-11-27 10:32:46 -080085// Cap the size of all field elements and scalars, including custom curves, to
86// 66 bytes, large enough to fit secp521r1 and brainpoolP512r1, which appear to
87// be the largest fields anyone plausibly uses.
88#define EC_MAX_SCALAR_BYTES 66
89#define EC_MAX_SCALAR_WORDS ((66 + BN_BYTES - 1) / BN_BYTES)
90
91OPENSSL_COMPILE_ASSERT(EC_MAX_SCALAR_WORDS <= BN_SMALL_MAX_WORDS,
92 bn_small_functions_applicable);
93
Robert Sloancd79cde2017-12-11 09:06:12 -080094// An EC_SCALAR is an integer fully reduced modulo the order. Only the first
Robert Sloanab8b8882018-03-26 11:39:51 -070095// |order->width| words are used. An |EC_SCALAR| is specific to an |EC_GROUP|
96// and must not be mixed between groups.
Robert Sloan99319a12017-11-27 10:32:46 -080097typedef union {
98 // bytes is the representation of the scalar in little-endian order.
99 uint8_t bytes[EC_MAX_SCALAR_BYTES];
100 BN_ULONG words[EC_MAX_SCALAR_WORDS];
101} EC_SCALAR;
102
Adam Langleyd9e397b2015-01-22 14:27:53 -0800103struct ec_method_st {
Adam Langleyd9e397b2015-01-22 14:27:53 -0800104 int (*group_init)(EC_GROUP *);
105 void (*group_finish)(EC_GROUP *);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800106 int (*group_set_curve)(EC_GROUP *, const BIGNUM *p, const BIGNUM *a,
107 const BIGNUM *b, BN_CTX *);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800108 int (*point_get_affine_coordinates)(const EC_GROUP *, const EC_POINT *,
109 BIGNUM *x, BIGNUM *y, BN_CTX *);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800110
Robert Sloan8f860b12017-08-28 07:37:06 -0700111 // Computes |r = g_scalar*generator + p_scalar*p| if |g_scalar| and |p_scalar|
112 // are both non-null. Computes |r = g_scalar*generator| if |p_scalar| is null.
113 // Computes |r = p_scalar*p| if g_scalar is null. At least one of |g_scalar|
114 // and |p_scalar| must be non-null, and |p| must be non-null if |p_scalar| is
115 // non-null.
Robert Sloan99319a12017-11-27 10:32:46 -0800116 int (*mul)(const EC_GROUP *group, EC_POINT *r, const EC_SCALAR *g_scalar,
117 const EC_POINT *p, const EC_SCALAR *p_scalar, BN_CTX *ctx);
Robert Sloan55818102017-12-18 11:26:17 -0800118 // mul_public performs the same computation as mul. It further assumes that
119 // the inputs are public so there is no concern about leaking their values
120 // through timing.
121 int (*mul_public)(const EC_GROUP *group, EC_POINT *r,
122 const EC_SCALAR *g_scalar, const EC_POINT *p,
123 const EC_SCALAR *p_scalar, BN_CTX *ctx);
Adam Langley4139edb2016-01-13 15:00:54 -0800124
Robert Sloan8f860b12017-08-28 07:37:06 -0700125 // 'field_mul' and 'field_sqr' can be used by 'add' and 'dbl' so that the
126 // same implementations of point operations can be used with different
127 // optimized implementations of expensive field operations:
Adam Langleyd9e397b2015-01-22 14:27:53 -0800128 int (*field_mul)(const EC_GROUP *, BIGNUM *r, const BIGNUM *a,
129 const BIGNUM *b, BN_CTX *);
130 int (*field_sqr)(const EC_GROUP *, BIGNUM *r, const BIGNUM *a, BN_CTX *);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800131
132 int (*field_encode)(const EC_GROUP *, BIGNUM *r, const BIGNUM *a,
Robert Sloan8f860b12017-08-28 07:37:06 -0700133 BN_CTX *); // e.g. to Montgomery
Adam Langleyd9e397b2015-01-22 14:27:53 -0800134 int (*field_decode)(const EC_GROUP *, BIGNUM *r, const BIGNUM *a,
Robert Sloan8f860b12017-08-28 07:37:06 -0700135 BN_CTX *); // e.g. from Montgomery
Adam Langleyd9e397b2015-01-22 14:27:53 -0800136} /* EC_METHOD */;
137
Robert Sloan8ff03552017-06-14 12:40:58 -0700138const EC_METHOD *EC_GFp_mont_method(void);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800139
Adam Langleyd9e397b2015-01-22 14:27:53 -0800140struct ec_group_st {
141 const EC_METHOD *meth;
142
Robert Sloan29c1d2c2017-10-30 14:10:28 -0700143 // Unlike all other |EC_POINT|s, |generator| does not own |generator->group|
144 // to avoid a reference cycle.
David Benjamin4969cc92016-04-22 15:02:23 -0400145 EC_POINT *generator;
David Benjaminc895d6b2016-08-11 13:26:41 -0400146 BIGNUM order;
Adam Langleyd9e397b2015-01-22 14:27:53 -0800147
Robert Sloan8f860b12017-08-28 07:37:06 -0700148 int curve_name; // optional NID for named curve
Adam Langleyd9e397b2015-01-22 14:27:53 -0800149
Robert Sloan99319a12017-11-27 10:32:46 -0800150 BN_MONT_CTX *order_mont; // data for ECDSA inverse
Adam Langleyd9e397b2015-01-22 14:27:53 -0800151
Robert Sloan8f860b12017-08-28 07:37:06 -0700152 // The following members are handled by the method functions,
153 // even if they appear generic
Adam Langleyd9e397b2015-01-22 14:27:53 -0800154
Robert Sloan8f860b12017-08-28 07:37:06 -0700155 BIGNUM field; // For curves over GF(p), this is the modulus.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800156
Robert Sloan8f860b12017-08-28 07:37:06 -0700157 BIGNUM a, b; // Curve coefficients.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800158
Robert Sloan8f860b12017-08-28 07:37:06 -0700159 int a_is_minus3; // enable optimized point arithmetics for special case
Adam Langleyd9e397b2015-01-22 14:27:53 -0800160
Robert Sloan29c1d2c2017-10-30 14:10:28 -0700161 CRYPTO_refcount_t references;
162
Robert Sloan8f860b12017-08-28 07:37:06 -0700163 BN_MONT_CTX *mont; // Montgomery structure.
David Benjamin4969cc92016-04-22 15:02:23 -0400164
Robert Sloan8f860b12017-08-28 07:37:06 -0700165 BIGNUM one; // The value one.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800166} /* EC_GROUP */;
167
168struct ec_point_st {
Robert Sloan29c1d2c2017-10-30 14:10:28 -0700169 // group is an owning reference to |group|, unless this is
170 // |group->generator|.
171 EC_GROUP *group;
Adam Langleyd9e397b2015-01-22 14:27:53 -0800172
Adam Langleyd9e397b2015-01-22 14:27:53 -0800173 BIGNUM X;
174 BIGNUM Y;
Robert Sloan8f860b12017-08-28 07:37:06 -0700175 BIGNUM Z; // Jacobian projective coordinates:
176 // (X, Y, Z) represents (X/Z^2, Y/Z^3) if Z != 0
Adam Langleyd9e397b2015-01-22 14:27:53 -0800177} /* EC_POINT */;
178
179EC_GROUP *ec_group_new(const EC_METHOD *meth);
180
Robert Sloancd79cde2017-12-11 09:06:12 -0800181// ec_bignum_to_scalar converts |in| to an |EC_SCALAR| and writes it to
182// |*out|. It returns one on success and zero if |in| is out of range.
Robert Sloanab8b8882018-03-26 11:39:51 -0700183OPENSSL_EXPORT int ec_bignum_to_scalar(const EC_GROUP *group, EC_SCALAR *out,
184 const BIGNUM *in);
Adam Langleyfad63272015-11-12 12:15:39 -0800185
Robert Sloancd79cde2017-12-11 09:06:12 -0800186// ec_bignum_to_scalar_unchecked behaves like |ec_bignum_to_scalar| but does not
187// check |in| is fully reduced.
188int ec_bignum_to_scalar_unchecked(const EC_GROUP *group, EC_SCALAR *out,
189 const BIGNUM *in);
190
Robert Sloan99319a12017-11-27 10:32:46 -0800191// ec_random_nonzero_scalar sets |out| to a uniformly selected random value from
192// 1 to |group->order| - 1. It returns one on success and zero on error.
193int ec_random_nonzero_scalar(const EC_GROUP *group, EC_SCALAR *out,
194 const uint8_t additional_data[32]);
195
196// ec_point_mul_scalar sets |r| to generator * |g_scalar| + |p| *
197// |p_scalar|. Unlike other functions which take |EC_SCALAR|, |g_scalar| and
198// |p_scalar| need not be fully reduced. They need only contain as many bits as
199// the order.
200int ec_point_mul_scalar(const EC_GROUP *group, EC_POINT *r,
201 const EC_SCALAR *g_scalar, const EC_POINT *p,
202 const EC_SCALAR *p_scalar, BN_CTX *ctx);
203
Robert Sloan55818102017-12-18 11:26:17 -0800204// ec_point_mul_scalar_public performs the same computation as
205// ec_point_mul_scalar. It further assumes that the inputs are public so
206// there is no concern about leaking their values through timing.
Robert Sloanab8b8882018-03-26 11:39:51 -0700207OPENSSL_EXPORT int ec_point_mul_scalar_public(
208 const EC_GROUP *group, EC_POINT *r, const EC_SCALAR *g_scalar,
209 const EC_POINT *p, const EC_SCALAR *p_scalar, BN_CTX *ctx);
210
211// ec_compute_wNAF writes the modified width-(w+1) Non-Adjacent Form (wNAF) of
212// |scalar| to |out| and returns one on success or zero on internal error. |out|
213// must have room for |bits| + 1 elements, each of which will be either zero or
214// odd with an absolute value less than 2^w satisfying
215// scalar = \sum_j out[j]*2^j
216// where at most one of any w+1 consecutive digits is non-zero
217// with the exception that the most significant digit may be only
218// w-1 zeros away from that next non-zero digit.
219int ec_compute_wNAF(const EC_GROUP *group, int8_t *out, const EC_SCALAR *scalar,
220 size_t bits, int w);
Robert Sloan55818102017-12-18 11:26:17 -0800221
Robert Sloan99319a12017-11-27 10:32:46 -0800222int ec_wNAF_mul(const EC_GROUP *group, EC_POINT *r, const EC_SCALAR *g_scalar,
223 const EC_POINT *p, const EC_SCALAR *p_scalar, BN_CTX *ctx);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800224
Robert Sloan8f860b12017-08-28 07:37:06 -0700225// method functions in simple.c
Adam Langleyd9e397b2015-01-22 14:27:53 -0800226int ec_GFp_simple_group_init(EC_GROUP *);
227void ec_GFp_simple_group_finish(EC_GROUP *);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800228int ec_GFp_simple_group_set_curve(EC_GROUP *, const BIGNUM *p, const BIGNUM *a,
229 const BIGNUM *b, BN_CTX *);
230int ec_GFp_simple_group_get_curve(const EC_GROUP *, BIGNUM *p, BIGNUM *a,
231 BIGNUM *b, BN_CTX *);
Kenny Roote99801b2015-11-06 15:31:15 -0800232unsigned ec_GFp_simple_group_get_degree(const EC_GROUP *);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800233int ec_GFp_simple_point_init(EC_POINT *);
234void ec_GFp_simple_point_finish(EC_POINT *);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800235int ec_GFp_simple_point_copy(EC_POINT *, const EC_POINT *);
236int ec_GFp_simple_point_set_to_infinity(const EC_GROUP *, EC_POINT *);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800237int ec_GFp_simple_point_set_affine_coordinates(const EC_GROUP *, EC_POINT *,
238 const BIGNUM *x, const BIGNUM *y,
239 BN_CTX *);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800240int ec_GFp_simple_add(const EC_GROUP *, EC_POINT *r, const EC_POINT *a,
241 const EC_POINT *b, BN_CTX *);
242int ec_GFp_simple_dbl(const EC_GROUP *, EC_POINT *r, const EC_POINT *a,
243 BN_CTX *);
244int ec_GFp_simple_invert(const EC_GROUP *, EC_POINT *, BN_CTX *);
245int ec_GFp_simple_is_at_infinity(const EC_GROUP *, const EC_POINT *);
246int ec_GFp_simple_is_on_curve(const EC_GROUP *, const EC_POINT *, BN_CTX *);
247int ec_GFp_simple_cmp(const EC_GROUP *, const EC_POINT *a, const EC_POINT *b,
248 BN_CTX *);
249int ec_GFp_simple_make_affine(const EC_GROUP *, EC_POINT *, BN_CTX *);
250int ec_GFp_simple_points_make_affine(const EC_GROUP *, size_t num,
251 EC_POINT * [], BN_CTX *);
252int ec_GFp_simple_field_mul(const EC_GROUP *, BIGNUM *r, const BIGNUM *a,
253 const BIGNUM *b, BN_CTX *);
254int ec_GFp_simple_field_sqr(const EC_GROUP *, BIGNUM *r, const BIGNUM *a,
255 BN_CTX *);
256
Robert Sloan8f860b12017-08-28 07:37:06 -0700257// method functions in montgomery.c
Adam Langleyd9e397b2015-01-22 14:27:53 -0800258int ec_GFp_mont_group_init(EC_GROUP *);
259int ec_GFp_mont_group_set_curve(EC_GROUP *, const BIGNUM *p, const BIGNUM *a,
260 const BIGNUM *b, BN_CTX *);
261void ec_GFp_mont_group_finish(EC_GROUP *);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800262int ec_GFp_mont_field_mul(const EC_GROUP *, BIGNUM *r, const BIGNUM *a,
263 const BIGNUM *b, BN_CTX *);
264int ec_GFp_mont_field_sqr(const EC_GROUP *, BIGNUM *r, const BIGNUM *a,
265 BN_CTX *);
266int ec_GFp_mont_field_encode(const EC_GROUP *, BIGNUM *r, const BIGNUM *a,
267 BN_CTX *);
268int ec_GFp_mont_field_decode(const EC_GROUP *, BIGNUM *r, const BIGNUM *a,
269 BN_CTX *);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800270
Adam Langleye9ada862015-05-11 17:20:37 -0700271void ec_GFp_nistp_recode_scalar_bits(uint8_t *sign, uint8_t *digit, uint8_t in);
272
Robert Sloan8ff03552017-06-14 12:40:58 -0700273const EC_METHOD *EC_GFp_nistp224_method(void);
274const EC_METHOD *EC_GFp_nistp256_method(void);
Adam Langleye9ada862015-05-11 17:20:37 -0700275
Robert Sloan8f860b12017-08-28 07:37:06 -0700276// EC_GFp_nistz256_method is a GFp method using montgomery multiplication, with
277// x86-64 optimized P256. See http://eprint.iacr.org/2013/816.
Robert Sloan8ff03552017-06-14 12:40:58 -0700278const EC_METHOD *EC_GFp_nistz256_method(void);
Adam Langleyfad63272015-11-12 12:15:39 -0800279
Robert Sloanab8b8882018-03-26 11:39:51 -0700280// An EC_WRAPPED_SCALAR is an |EC_SCALAR| with a parallel |BIGNUM|
281// representation. It exists to support the |EC_KEY_get0_private_key| API.
282typedef struct {
283 BIGNUM bignum;
284 EC_SCALAR scalar;
285} EC_WRAPPED_SCALAR;
286
Adam Langleyd9e397b2015-01-22 14:27:53 -0800287struct ec_key_st {
Adam Langleyd9e397b2015-01-22 14:27:53 -0800288 EC_GROUP *group;
289
290 EC_POINT *pub_key;
Robert Sloanab8b8882018-03-26 11:39:51 -0700291 EC_WRAPPED_SCALAR *priv_key;
Adam Langleyd9e397b2015-01-22 14:27:53 -0800292
Robert Sloan8f860b12017-08-28 07:37:06 -0700293 // fixed_k may contain a specific value of 'k', to be used in ECDSA signing.
294 // This is only for the FIPS power-on tests.
Robert Sloan8ff03552017-06-14 12:40:58 -0700295 BIGNUM *fixed_k;
296
Adam Langleyd9e397b2015-01-22 14:27:53 -0800297 unsigned int enc_flag;
298 point_conversion_form_t conv_form;
299
Adam Langleyf4e42722015-06-04 17:45:09 -0700300 CRYPTO_refcount_t references;
Adam Langleyd9e397b2015-01-22 14:27:53 -0800301
302 ECDSA_METHOD *ecdsa_meth;
303
304 CRYPTO_EX_DATA ex_data;
305} /* EC_KEY */;
306
Adam Langleyd9e397b2015-01-22 14:27:53 -0800307struct built_in_curve {
308 int nid;
Robert Sloan8ff03552017-06-14 12:40:58 -0700309 const uint8_t *oid;
David Benjamin4969cc92016-04-22 15:02:23 -0400310 uint8_t oid_len;
Robert Sloan8f860b12017-08-28 07:37:06 -0700311 // comment is a human-readable string describing the curve.
Robert Sloane56da3e2017-06-26 08:26:42 -0700312 const char *comment;
Robert Sloan8f860b12017-08-28 07:37:06 -0700313 // param_len is the number of bytes needed to store a field element.
Robert Sloane56da3e2017-06-26 08:26:42 -0700314 uint8_t param_len;
Robert Sloan8f860b12017-08-28 07:37:06 -0700315 // params points to an array of 6*|param_len| bytes which hold the field
316 // elements of the following (in big-endian order): prime, a, b, generator x,
317 // generator y, order.
Robert Sloane56da3e2017-06-26 08:26:42 -0700318 const uint8_t *params;
David Benjaminf0c4a6c2016-08-11 13:26:41 -0400319 const EC_METHOD *method;
Adam Langleyd9e397b2015-01-22 14:27:53 -0800320};
321
Robert Sloan8ff03552017-06-14 12:40:58 -0700322#define OPENSSL_NUM_BUILT_IN_CURVES 4
323
324struct built_in_curves {
325 struct built_in_curve curves[OPENSSL_NUM_BUILT_IN_CURVES];
326};
327
Robert Sloan8f860b12017-08-28 07:37:06 -0700328// OPENSSL_built_in_curves returns a pointer to static information about
329// standard curves. The array is terminated with an entry where |nid| is
330// |NID_undef|.
Robert Sloan8ff03552017-06-14 12:40:58 -0700331const struct built_in_curves *OPENSSL_built_in_curves(void);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800332
333#if defined(__cplusplus)
Robert Sloan8f860b12017-08-28 07:37:06 -0700334} // extern C
Adam Langleyd9e397b2015-01-22 14:27:53 -0800335#endif
336
Robert Sloan8f860b12017-08-28 07:37:06 -0700337#endif // OPENSSL_HEADER_EC_INTERNAL_H