blob: 4643fd2c4c06f4706e039a0d3c70ff91e6422a41 [file] [log] [blame]
Adam Langleyd9e397b2015-01-22 14:27:53 -08001/* Originally written by Bodo Moeller and Nils Larsch 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#include <openssl/ec.h>
69
70#include <openssl/bn.h>
71#include <openssl/err.h>
72#include <openssl/mem.h>
73
Robert Sloan69939df2017-01-09 10:53:07 -080074#include "../bn/internal.h"
Adam Langleyd9e397b2015-01-22 14:27:53 -080075#include "internal.h"
76
77
Adam Langleyd9e397b2015-01-22 14:27:53 -080078int ec_GFp_mont_group_init(EC_GROUP *group) {
79 int ok;
80
81 ok = ec_GFp_simple_group_init(group);
Adam Langleye9ada862015-05-11 17:20:37 -070082 group->mont = NULL;
Adam Langleyd9e397b2015-01-22 14:27:53 -080083 return ok;
84}
85
86void ec_GFp_mont_group_finish(EC_GROUP *group) {
Adam Langleye9ada862015-05-11 17:20:37 -070087 BN_MONT_CTX_free(group->mont);
88 group->mont = NULL;
Adam Langleyd9e397b2015-01-22 14:27:53 -080089 ec_GFp_simple_group_finish(group);
90}
91
Adam Langleyd9e397b2015-01-22 14:27:53 -080092int ec_GFp_mont_group_copy(EC_GROUP *dest, const EC_GROUP *src) {
Adam Langleye9ada862015-05-11 17:20:37 -070093 BN_MONT_CTX_free(dest->mont);
94 dest->mont = NULL;
Adam Langleyd9e397b2015-01-22 14:27:53 -080095
Adam Langleye9ada862015-05-11 17:20:37 -070096 if (!ec_GFp_simple_group_copy(dest, src)) {
Adam Langleyd9e397b2015-01-22 14:27:53 -080097 return 0;
Adam Langleyd9e397b2015-01-22 14:27:53 -080098 }
Adam Langleye9ada862015-05-11 17:20:37 -070099
100 if (src->mont != NULL) {
101 dest->mont = BN_MONT_CTX_new();
102 if (dest->mont == NULL) {
103 return 0;
104 }
105 if (!BN_MONT_CTX_copy(dest->mont, src->mont)) {
Adam Langleyd9e397b2015-01-22 14:27:53 -0800106 goto err;
Adam Langleye9ada862015-05-11 17:20:37 -0700107 }
108 }
Adam Langleyd9e397b2015-01-22 14:27:53 -0800109
110 return 1;
111
112err:
Adam Langleye9ada862015-05-11 17:20:37 -0700113 BN_MONT_CTX_free(dest->mont);
114 dest->mont = NULL;
Adam Langleyd9e397b2015-01-22 14:27:53 -0800115 return 0;
116}
117
118int ec_GFp_mont_group_set_curve(EC_GROUP *group, const BIGNUM *p,
119 const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) {
120 BN_CTX *new_ctx = NULL;
121 BN_MONT_CTX *mont = NULL;
Adam Langleyd9e397b2015-01-22 14:27:53 -0800122 int ret = 0;
123
Adam Langleye9ada862015-05-11 17:20:37 -0700124 BN_MONT_CTX_free(group->mont);
125 group->mont = NULL;
Adam Langleyd9e397b2015-01-22 14:27:53 -0800126
127 if (ctx == NULL) {
128 ctx = new_ctx = BN_CTX_new();
Adam Langleye9ada862015-05-11 17:20:37 -0700129 if (ctx == NULL) {
Adam Langleyd9e397b2015-01-22 14:27:53 -0800130 return 0;
Adam Langleye9ada862015-05-11 17:20:37 -0700131 }
Adam Langleyd9e397b2015-01-22 14:27:53 -0800132 }
133
134 mont = BN_MONT_CTX_new();
Adam Langleye9ada862015-05-11 17:20:37 -0700135 if (mont == NULL) {
Adam Langleyd9e397b2015-01-22 14:27:53 -0800136 goto err;
Adam Langleye9ada862015-05-11 17:20:37 -0700137 }
Adam Langleyd9e397b2015-01-22 14:27:53 -0800138 if (!BN_MONT_CTX_set(mont, p, ctx)) {
Kenny Rootb8494592015-09-25 02:29:14 +0000139 OPENSSL_PUT_ERROR(EC, ERR_R_BN_LIB);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800140 goto err;
141 }
Adam Langleyd9e397b2015-01-22 14:27:53 -0800142
Adam Langleye9ada862015-05-11 17:20:37 -0700143 group->mont = mont;
Adam Langleyd9e397b2015-01-22 14:27:53 -0800144 mont = NULL;
Adam Langleyd9e397b2015-01-22 14:27:53 -0800145
146 ret = ec_GFp_simple_group_set_curve(group, p, a, b, ctx);
147
148 if (!ret) {
Adam Langleye9ada862015-05-11 17:20:37 -0700149 BN_MONT_CTX_free(group->mont);
150 group->mont = NULL;
Adam Langleyd9e397b2015-01-22 14:27:53 -0800151 }
152
153err:
Adam Langleye9ada862015-05-11 17:20:37 -0700154 BN_CTX_free(new_ctx);
155 BN_MONT_CTX_free(mont);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800156 return ret;
157}
158
159int ec_GFp_mont_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a,
160 const BIGNUM *b, BN_CTX *ctx) {
Adam Langleye9ada862015-05-11 17:20:37 -0700161 if (group->mont == NULL) {
Kenny Rootb8494592015-09-25 02:29:14 +0000162 OPENSSL_PUT_ERROR(EC, EC_R_NOT_INITIALIZED);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800163 return 0;
164 }
165
Adam Langleye9ada862015-05-11 17:20:37 -0700166 return BN_mod_mul_montgomery(r, a, b, group->mont, ctx);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800167}
168
169int ec_GFp_mont_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a,
170 BN_CTX *ctx) {
Adam Langleye9ada862015-05-11 17:20:37 -0700171 if (group->mont == NULL) {
Kenny Rootb8494592015-09-25 02:29:14 +0000172 OPENSSL_PUT_ERROR(EC, EC_R_NOT_INITIALIZED);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800173 return 0;
174 }
175
Adam Langleye9ada862015-05-11 17:20:37 -0700176 return BN_mod_mul_montgomery(r, a, a, group->mont, ctx);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800177}
178
179int ec_GFp_mont_field_encode(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a,
180 BN_CTX *ctx) {
Adam Langleye9ada862015-05-11 17:20:37 -0700181 if (group->mont == NULL) {
Kenny Rootb8494592015-09-25 02:29:14 +0000182 OPENSSL_PUT_ERROR(EC, EC_R_NOT_INITIALIZED);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800183 return 0;
184 }
185
Adam Langleye9ada862015-05-11 17:20:37 -0700186 return BN_to_montgomery(r, a, group->mont, ctx);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800187}
188
189int ec_GFp_mont_field_decode(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a,
190 BN_CTX *ctx) {
Adam Langleye9ada862015-05-11 17:20:37 -0700191 if (group->mont == NULL) {
Kenny Rootb8494592015-09-25 02:29:14 +0000192 OPENSSL_PUT_ERROR(EC, EC_R_NOT_INITIALIZED);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800193 return 0;
194 }
195
Adam Langleye9ada862015-05-11 17:20:37 -0700196 return BN_from_montgomery(r, a, group->mont, ctx);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800197}
198
David Benjamin4969cc92016-04-22 15:02:23 -0400199static int ec_GFp_mont_point_get_affine_coordinates(const EC_GROUP *group,
200 const EC_POINT *point,
201 BIGNUM *x, BIGNUM *y,
202 BN_CTX *ctx) {
203 if (EC_POINT_is_at_infinity(group, point)) {
204 OPENSSL_PUT_ERROR(EC, EC_R_POINT_AT_INFINITY);
205 return 0;
206 }
207
208 BN_CTX *new_ctx = NULL;
209 if (ctx == NULL) {
210 ctx = new_ctx = BN_CTX_new();
211 if (ctx == NULL) {
212 return 0;
213 }
214 }
215
216 int ret = 0;
217
218 BN_CTX_start(ctx);
219
220 if (BN_cmp(&point->Z, &group->one) == 0) {
221 /* |point| is already affine. */
222 if (x != NULL && !BN_from_montgomery(x, &point->X, group->mont, ctx)) {
223 goto err;
224 }
225 if (y != NULL && !BN_from_montgomery(y, &point->Y, group->mont, ctx)) {
226 goto err;
227 }
228 } else {
229 /* transform (X, Y, Z) into (x, y) := (X/Z^2, Y/Z^3) */
230
231 BIGNUM *Z_1 = BN_CTX_get(ctx);
232 BIGNUM *Z_2 = BN_CTX_get(ctx);
233 BIGNUM *Z_3 = BN_CTX_get(ctx);
234 if (Z_1 == NULL ||
235 Z_2 == NULL ||
Robert Sloan69939df2017-01-09 10:53:07 -0800236 Z_3 == NULL) {
David Benjamin4969cc92016-04-22 15:02:23 -0400237 goto err;
238 }
239
240 /* The straightforward way to calculate the inverse of a Montgomery-encoded
241 * value where the result is Montgomery-encoded is:
242 *
David Benjaminc895d6b2016-08-11 13:26:41 -0400243 * |BN_from_montgomery| + invert + |BN_to_montgomery|.
David Benjamin4969cc92016-04-22 15:02:23 -0400244 *
245 * This is equivalent, but more efficient, because |BN_from_montgomery|
246 * is more efficient (at least in theory) than |BN_to_montgomery|, since it
David Benjaminc895d6b2016-08-11 13:26:41 -0400247 * doesn't have to do the multiplication before the reduction.
248 *
Robert Sloan69939df2017-01-09 10:53:07 -0800249 * Use Fermat's Little Theorem instead of |BN_mod_inverse_odd| since this
250 * inversion may be done as the final step of private key operations.
251 * Unfortunately, this is suboptimal for ECDSA verification. */
David Benjamin4969cc92016-04-22 15:02:23 -0400252 if (!BN_from_montgomery(Z_1, &point->Z, group->mont, ctx) ||
253 !BN_from_montgomery(Z_1, Z_1, group->mont, ctx) ||
Robert Sloan69939df2017-01-09 10:53:07 -0800254 !bn_mod_inverse_prime(Z_1, Z_1, &group->field, ctx, group->mont)) {
David Benjamin4969cc92016-04-22 15:02:23 -0400255 goto err;
256 }
257
258 if (!BN_mod_mul_montgomery(Z_2, Z_1, Z_1, group->mont, ctx)) {
259 goto err;
260 }
261
262 /* Instead of using |BN_from_montgomery| to convert the |x| coordinate
263 * and then calling |BN_from_montgomery| again to convert the |y|
264 * coordinate below, convert the common factor |Z_2| once now, saving one
265 * reduction. */
266 if (!BN_from_montgomery(Z_2, Z_2, group->mont, ctx)) {
267 goto err;
268 }
269
270 if (x != NULL) {
271 if (!BN_mod_mul_montgomery(x, &point->X, Z_2, group->mont, ctx)) {
272 goto err;
273 }
274 }
275
276 if (y != NULL) {
277 if (!BN_mod_mul_montgomery(Z_3, Z_2, Z_1, group->mont, ctx) ||
278 !BN_mod_mul_montgomery(y, &point->Y, Z_3, group->mont, ctx)) {
279 goto err;
280 }
281 }
282 }
283
284 ret = 1;
285
286err:
287 BN_CTX_end(ctx);
288 BN_CTX_free(new_ctx);
289 return ret;
290}
291
David Benjaminf0c4a6c2016-08-11 13:26:41 -0400292const EC_METHOD EC_GFp_mont_method = {
Adam Langley4139edb2016-01-13 15:00:54 -0800293 ec_GFp_mont_group_init,
294 ec_GFp_mont_group_finish,
Adam Langley4139edb2016-01-13 15:00:54 -0800295 ec_GFp_mont_group_copy,
296 ec_GFp_mont_group_set_curve,
David Benjamin4969cc92016-04-22 15:02:23 -0400297 ec_GFp_mont_point_get_affine_coordinates,
Adam Langley4139edb2016-01-13 15:00:54 -0800298 ec_wNAF_mul /* XXX: Not constant time. */,
Adam Langley4139edb2016-01-13 15:00:54 -0800299 ec_GFp_mont_field_mul,
300 ec_GFp_mont_field_sqr,
301 ec_GFp_mont_field_encode,
302 ec_GFp_mont_field_decode,
David Benjaminf0c4a6c2016-08-11 13:26:41 -0400303};