blob: a85c28a4a7b3207e7ab96211cf014ad50efee5b1 [file] [log] [blame]
Adam Langley95c29f32014-06-20 12:00:00 -07001/* ====================================================================
2 * Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 *
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 *
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in
13 * the documentation and/or other materials provided with the
14 * distribution.
15 *
16 * 3. All advertising materials mentioning features or use of this
17 * software must display the following acknowledgment:
18 * "This product includes software developed by the OpenSSL Project
19 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
20 *
21 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
22 * endorse or promote products derived from this software without
23 * prior written permission. For written permission, please contact
24 * openssl-core@OpenSSL.org.
25 *
26 * 5. Products derived from this software may not be called "OpenSSL"
27 * nor may "OpenSSL" appear in their names without prior written
28 * permission of the OpenSSL Project.
29 *
30 * 6. Redistributions of any form whatsoever must retain the following
31 * acknowledgment:
32 * "This product includes software developed by the OpenSSL Project
33 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
34 *
35 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
36 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
37 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
38 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
39 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
40 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
41 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
42 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
43 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
44 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
45 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
46 * OF THE POSSIBILITY OF SUCH DAMAGE.
47 * ====================================================================
48 *
49 * This product includes cryptographic software written by Eric Young
50 * (eay@cryptsoft.com). This product includes software written by Tim
51 * Hudson (tjh@cryptsoft.com). */
52
53#include <openssl/ecdsa.h>
54
David Benjamin87897a82015-06-11 23:30:53 -040055#include <assert.h>
Adam Langley2b2d66d2015-01-30 17:08:37 -080056#include <string.h>
57
Adam Langley95c29f32014-06-20 12:00:00 -070058#include <openssl/bn.h>
David Benjamin87897a82015-06-11 23:30:53 -040059#include <openssl/bytestring.h>
Adam Langley95c29f32014-06-20 12:00:00 -070060#include <openssl/err.h>
61#include <openssl/mem.h>
Adam Langley95c29f32014-06-20 12:00:00 -070062
63#include "../ec/internal.h"
64
65
66int ECDSA_sign(int type, const uint8_t *digest, size_t digest_len, uint8_t *sig,
67 unsigned int *sig_len, EC_KEY *eckey) {
68 if (eckey->ecdsa_meth && eckey->ecdsa_meth->sign) {
69 return eckey->ecdsa_meth->sign(digest, digest_len, sig, sig_len, eckey);
70 }
71
72 return ECDSA_sign_ex(type, digest, digest_len, sig, sig_len, NULL, NULL,
73 eckey);
74}
75
76int ECDSA_verify(int type, const uint8_t *digest, size_t digest_len,
77 const uint8_t *sig, size_t sig_len, EC_KEY *eckey) {
78 ECDSA_SIG *s;
Adam Langley5129e2d2014-07-25 10:06:44 -070079 int ret = 0;
Adam Langleyca9a5382015-01-08 12:26:55 -080080 uint8_t *der = NULL;
Adam Langley95c29f32014-06-20 12:00:00 -070081
David Benjamin87897a82015-06-11 23:30:53 -040082 /* Decode the ECDSA signature. */
83 s = ECDSA_SIG_from_bytes(sig, sig_len);
84 if (s == NULL) {
Adam Langley95c29f32014-06-20 12:00:00 -070085 goto err;
86 }
Adam Langleyca9a5382015-01-08 12:26:55 -080087
David Benjamin87897a82015-06-11 23:30:53 -040088 /* Defend against potential laxness in the DER parser. */
89 size_t der_len;
90 if (!ECDSA_SIG_to_bytes(&der, &der_len, s) ||
91 der_len != sig_len || memcmp(sig, der, sig_len) != 0) {
92 /* This should never happen. crypto/bytestring is strictly DER. */
David Benjamin3570d732015-06-29 00:28:17 -040093 OPENSSL_PUT_ERROR(ECDSA, ERR_R_INTERNAL_ERROR);
Adam Langleyca9a5382015-01-08 12:26:55 -080094 goto err;
95 }
96
Adam Langley95c29f32014-06-20 12:00:00 -070097 ret = ECDSA_do_verify(digest, digest_len, s, eckey);
98
99err:
David Benjamincca4ba72015-04-22 15:49:27 -0400100 OPENSSL_free(der);
101 ECDSA_SIG_free(s);
Adam Langley95c29f32014-06-20 12:00:00 -0700102 return ret;
103}
104
105/* digest_to_bn interprets |digest_len| bytes from |digest| as a big-endian
106 * number and sets |out| to that value. It then truncates |out| so that it's,
107 * at most, as long as |order|. It returns one on success and zero otherwise. */
108static int digest_to_bn(BIGNUM *out, const uint8_t *digest, size_t digest_len,
109 const BIGNUM *order) {
110 size_t num_bits;
111
112 num_bits = BN_num_bits(order);
113 /* Need to truncate digest if it is too long: first truncate whole
114 * bytes. */
115 if (8 * digest_len > num_bits) {
116 digest_len = (num_bits + 7) / 8;
117 }
118 if (!BN_bin2bn(digest, digest_len, out)) {
David Benjamin3570d732015-06-29 00:28:17 -0400119 OPENSSL_PUT_ERROR(ECDSA, ERR_R_BN_LIB);
Adam Langley95c29f32014-06-20 12:00:00 -0700120 return 0;
121 }
122
123 /* If still too long truncate remaining bits with a shift */
124 if ((8 * digest_len > num_bits) &&
125 !BN_rshift(out, out, 8 - (num_bits & 0x7))) {
David Benjamin3570d732015-06-29 00:28:17 -0400126 OPENSSL_PUT_ERROR(ECDSA, ERR_R_BN_LIB);
Adam Langley95c29f32014-06-20 12:00:00 -0700127 return 0;
128 }
129
130 return 1;
131}
132
133ECDSA_SIG *ECDSA_do_sign(const uint8_t *digest, size_t digest_len,
134 EC_KEY *key) {
135 return ECDSA_do_sign_ex(digest, digest_len, NULL, NULL, key);
136}
137
138int ECDSA_do_verify(const uint8_t *digest, size_t digest_len,
139 const ECDSA_SIG *sig, EC_KEY *eckey) {
Adam Langley5129e2d2014-07-25 10:06:44 -0700140 int ret = 0;
Adam Langley95c29f32014-06-20 12:00:00 -0700141 BN_CTX *ctx;
Brian Smitha3d9de02015-11-18 17:07:14 -1000142 BIGNUM *u1, *u2, *m, *X;
Adam Langley95c29f32014-06-20 12:00:00 -0700143 EC_POINT *point = NULL;
144 const EC_GROUP *group;
145 const EC_POINT *pub_key;
146
Adam Langley95c29f32014-06-20 12:00:00 -0700147 /* check input values */
Adam Langleyb2cb0ec2014-09-02 14:28:49 -0700148 if ((group = EC_KEY_get0_group(eckey)) == NULL ||
149 (pub_key = EC_KEY_get0_public_key(eckey)) == NULL ||
150 sig == NULL) {
David Benjamin3570d732015-06-29 00:28:17 -0400151 OPENSSL_PUT_ERROR(ECDSA, ECDSA_R_MISSING_PARAMETERS);
Adam Langley5129e2d2014-07-25 10:06:44 -0700152 return 0;
Adam Langley95c29f32014-06-20 12:00:00 -0700153 }
154
155 ctx = BN_CTX_new();
156 if (!ctx) {
David Benjamin3570d732015-06-29 00:28:17 -0400157 OPENSSL_PUT_ERROR(ECDSA, ERR_R_MALLOC_FAILURE);
Adam Langley5129e2d2014-07-25 10:06:44 -0700158 return 0;
Adam Langley95c29f32014-06-20 12:00:00 -0700159 }
160 BN_CTX_start(ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700161 u1 = BN_CTX_get(ctx);
162 u2 = BN_CTX_get(ctx);
163 m = BN_CTX_get(ctx);
164 X = BN_CTX_get(ctx);
Brian Smitha3d9de02015-11-18 17:07:14 -1000165 if (u1 == NULL || u2 == NULL || m == NULL || X == NULL) {
David Benjamin3570d732015-06-29 00:28:17 -0400166 OPENSSL_PUT_ERROR(ECDSA, ERR_R_BN_LIB);
Adam Langley95c29f32014-06-20 12:00:00 -0700167 goto err;
168 }
169
Brian Smitha3d9de02015-11-18 17:07:14 -1000170 const BIGNUM *order = EC_GROUP_get0_order(group);
Adam Langley95c29f32014-06-20 12:00:00 -0700171 if (BN_is_zero(sig->r) || BN_is_negative(sig->r) ||
172 BN_ucmp(sig->r, order) >= 0 || BN_is_zero(sig->s) ||
173 BN_is_negative(sig->s) || BN_ucmp(sig->s, order) >= 0) {
David Benjamin3570d732015-06-29 00:28:17 -0400174 OPENSSL_PUT_ERROR(ECDSA, ECDSA_R_BAD_SIGNATURE);
Adam Langley95c29f32014-06-20 12:00:00 -0700175 ret = 0; /* signature is invalid */
176 goto err;
177 }
178 /* calculate tmp1 = inv(S) mod order */
179 if (!BN_mod_inverse(u2, sig->s, order, ctx)) {
David Benjamin3570d732015-06-29 00:28:17 -0400180 OPENSSL_PUT_ERROR(ECDSA, ERR_R_BN_LIB);
Adam Langley95c29f32014-06-20 12:00:00 -0700181 goto err;
182 }
183 if (!digest_to_bn(m, digest, digest_len, order)) {
184 goto err;
185 }
186 /* u1 = m * tmp mod order */
187 if (!BN_mod_mul(u1, m, u2, order, ctx)) {
David Benjamin3570d732015-06-29 00:28:17 -0400188 OPENSSL_PUT_ERROR(ECDSA, ERR_R_BN_LIB);
Adam Langley95c29f32014-06-20 12:00:00 -0700189 goto err;
190 }
191 /* u2 = r * w mod q */
192 if (!BN_mod_mul(u2, sig->r, u2, order, ctx)) {
David Benjamin3570d732015-06-29 00:28:17 -0400193 OPENSSL_PUT_ERROR(ECDSA, ERR_R_BN_LIB);
Adam Langley95c29f32014-06-20 12:00:00 -0700194 goto err;
195 }
196
197 point = EC_POINT_new(group);
198 if (point == NULL) {
David Benjamin3570d732015-06-29 00:28:17 -0400199 OPENSSL_PUT_ERROR(ECDSA, ERR_R_MALLOC_FAILURE);
Adam Langley95c29f32014-06-20 12:00:00 -0700200 goto err;
201 }
202 if (!EC_POINT_mul(group, point, u1, pub_key, u2, ctx)) {
David Benjamin3570d732015-06-29 00:28:17 -0400203 OPENSSL_PUT_ERROR(ECDSA, ERR_R_EC_LIB);
Adam Langley95c29f32014-06-20 12:00:00 -0700204 goto err;
205 }
206 if (!EC_POINT_get_affine_coordinates_GFp(group, point, X, NULL, ctx)) {
David Benjamin3570d732015-06-29 00:28:17 -0400207 OPENSSL_PUT_ERROR(ECDSA, ERR_R_EC_LIB);
Adam Langley95c29f32014-06-20 12:00:00 -0700208 goto err;
209 }
210 if (!BN_nnmod(u1, X, order, ctx)) {
David Benjamin3570d732015-06-29 00:28:17 -0400211 OPENSSL_PUT_ERROR(ECDSA, ERR_R_BN_LIB);
Adam Langley95c29f32014-06-20 12:00:00 -0700212 goto err;
213 }
214 /* if the signature is correct u1 is equal to sig->r */
215 ret = (BN_ucmp(u1, sig->r) == 0);
216
217err:
Matt Braithwaite0b553eb2016-01-15 16:55:41 -0800218 BN_CTX_end(ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700219 BN_CTX_free(ctx);
David Benjamincca4ba72015-04-22 15:49:27 -0400220 EC_POINT_free(point);
Adam Langley95c29f32014-06-20 12:00:00 -0700221 return ret;
222}
223
Adam Langleyd4b4f082014-06-20 12:00:00 -0700224static int ecdsa_sign_setup(EC_KEY *eckey, BN_CTX *ctx_in, BIGNUM **kinvp,
225 BIGNUM **rp, const uint8_t *digest,
226 size_t digest_len) {
Adam Langley95c29f32014-06-20 12:00:00 -0700227 BN_CTX *ctx = NULL;
David Benjamin8cf79af2016-06-16 14:58:36 -0400228 BIGNUM *k = NULL, *r = NULL, *tmp = NULL;
Adam Langley95c29f32014-06-20 12:00:00 -0700229 EC_POINT *tmp_point = NULL;
230 const EC_GROUP *group;
231 int ret = 0;
232
233 if (eckey == NULL || (group = EC_KEY_get0_group(eckey)) == NULL) {
David Benjamin3570d732015-06-29 00:28:17 -0400234 OPENSSL_PUT_ERROR(ECDSA, ERR_R_PASSED_NULL_PARAMETER);
Adam Langley95c29f32014-06-20 12:00:00 -0700235 return 0;
236 }
237
238 if (ctx_in == NULL) {
239 if ((ctx = BN_CTX_new()) == NULL) {
David Benjamin3570d732015-06-29 00:28:17 -0400240 OPENSSL_PUT_ERROR(ECDSA, ERR_R_MALLOC_FAILURE);
Adam Langley95c29f32014-06-20 12:00:00 -0700241 return 0;
242 }
243 } else {
244 ctx = ctx_in;
245 }
246
247 k = BN_new(); /* this value is later returned in *kinvp */
248 r = BN_new(); /* this value is later returned in *rp */
David Benjamin8cf79af2016-06-16 14:58:36 -0400249 tmp = BN_new();
250 if (k == NULL || r == NULL || tmp == NULL) {
David Benjamin3570d732015-06-29 00:28:17 -0400251 OPENSSL_PUT_ERROR(ECDSA, ERR_R_MALLOC_FAILURE);
Adam Langley95c29f32014-06-20 12:00:00 -0700252 goto err;
253 }
254 tmp_point = EC_POINT_new(group);
255 if (tmp_point == NULL) {
David Benjamin3570d732015-06-29 00:28:17 -0400256 OPENSSL_PUT_ERROR(ECDSA, ERR_R_EC_LIB);
Adam Langley95c29f32014-06-20 12:00:00 -0700257 goto err;
258 }
Brian Smitha3d9de02015-11-18 17:07:14 -1000259
260 const BIGNUM *order = EC_GROUP_get0_order(group);
Adam Langley95c29f32014-06-20 12:00:00 -0700261
262 do {
Adam Langleyd4b4f082014-06-20 12:00:00 -0700263 /* If possible, we'll include the private key and message digest in the k
264 * generation. The |digest| argument is only empty if |ECDSA_sign_setup| is
265 * being used. */
Brian Smith4edca0b2016-07-25 10:36:58 -1000266 if (digest_len > 0) {
267 do {
268 if (!BN_generate_dsa_nonce(k, order, EC_KEY_get0_private_key(eckey),
269 digest, digest_len, ctx)) {
270 OPENSSL_PUT_ERROR(ECDSA, ECDSA_R_RANDOM_NUMBER_GENERATION_FAILED);
271 goto err;
272 }
273 } while (BN_is_zero(k));
274 } else if (!BN_rand_range_ex(k, 1, order)) {
275 OPENSSL_PUT_ERROR(ECDSA, ECDSA_R_RANDOM_NUMBER_GENERATION_FAILED);
276 goto err;
277 }
Adam Langley95c29f32014-06-20 12:00:00 -0700278
279 /* We do not want timing information to leak the length of k,
280 * so we compute G*k using an equivalent scalar of fixed
281 * bit-length. */
282
283 if (!BN_add(k, k, order)) {
284 goto err;
285 }
286 if (BN_num_bits(k) <= BN_num_bits(order)) {
287 if (!BN_add(k, k, order)) {
288 goto err;
289 }
290 }
291
292 /* compute r the x-coordinate of generator * k */
293 if (!EC_POINT_mul(group, tmp_point, k, NULL, NULL, ctx)) {
David Benjamin3570d732015-06-29 00:28:17 -0400294 OPENSSL_PUT_ERROR(ECDSA, ERR_R_EC_LIB);
Adam Langley95c29f32014-06-20 12:00:00 -0700295 goto err;
296 }
David Benjamin8cf79af2016-06-16 14:58:36 -0400297 if (!EC_POINT_get_affine_coordinates_GFp(group, tmp_point, tmp, NULL,
298 ctx)) {
David Benjamin3570d732015-06-29 00:28:17 -0400299 OPENSSL_PUT_ERROR(ECDSA, ERR_R_EC_LIB);
Adam Langley95c29f32014-06-20 12:00:00 -0700300 goto err;
301 }
302
David Benjamin8cf79af2016-06-16 14:58:36 -0400303 if (!BN_nnmod(r, tmp, order, ctx)) {
David Benjamin3570d732015-06-29 00:28:17 -0400304 OPENSSL_PUT_ERROR(ECDSA, ERR_R_BN_LIB);
Adam Langley95c29f32014-06-20 12:00:00 -0700305 goto err;
306 }
307 } while (BN_is_zero(r));
308
David Benjamin8cf79af2016-06-16 14:58:36 -0400309 /* Compute the inverse of k. The order is a prime, so use Fermat's Little
310 * Theorem. */
311 if (!BN_set_word(tmp, 2) ||
312 !BN_sub(tmp, order, tmp) ||
313 /* Note |ec_group_get_mont_data| may return NULL but |BN_mod_exp_mont|
314 * allows it to be. */
315 !BN_mod_exp_mont(k, k, tmp, order, ctx, ec_group_get_mont_data(group))) {
David Benjamin3570d732015-06-29 00:28:17 -0400316 OPENSSL_PUT_ERROR(ECDSA, ERR_R_BN_LIB);
Adam Langley95c29f32014-06-20 12:00:00 -0700317 goto err;
318 }
319 /* clear old values if necessary */
David Benjamincca4ba72015-04-22 15:49:27 -0400320 BN_clear_free(*rp);
321 BN_clear_free(*kinvp);
Adam Langley95c29f32014-06-20 12:00:00 -0700322
323 /* save the pre-computed values */
324 *rp = r;
325 *kinvp = k;
326 ret = 1;
327
328err:
329 if (!ret) {
David Benjamincca4ba72015-04-22 15:49:27 -0400330 BN_clear_free(k);
331 BN_clear_free(r);
Adam Langley95c29f32014-06-20 12:00:00 -0700332 }
David Benjamin9ab14e02015-02-11 01:17:18 -0500333 if (ctx_in == NULL) {
Adam Langley95c29f32014-06-20 12:00:00 -0700334 BN_CTX_free(ctx);
David Benjamin9ab14e02015-02-11 01:17:18 -0500335 }
David Benjamincca4ba72015-04-22 15:49:27 -0400336 EC_POINT_free(tmp_point);
David Benjamin8cf79af2016-06-16 14:58:36 -0400337 BN_clear_free(tmp);
Adam Langley95c29f32014-06-20 12:00:00 -0700338 return ret;
339}
340
Adam Langleyd4b4f082014-06-20 12:00:00 -0700341int ECDSA_sign_setup(EC_KEY *eckey, BN_CTX *ctx, BIGNUM **kinv, BIGNUM **rp) {
342 return ecdsa_sign_setup(eckey, ctx, kinv, rp, NULL, 0);
343}
344
Adam Langley95c29f32014-06-20 12:00:00 -0700345ECDSA_SIG *ECDSA_do_sign_ex(const uint8_t *digest, size_t digest_len,
346 const BIGNUM *in_kinv, const BIGNUM *in_r,
347 EC_KEY *eckey) {
348 int ok = 0;
Brian Smitha3d9de02015-11-18 17:07:14 -1000349 BIGNUM *kinv = NULL, *s, *m = NULL, *tmp = NULL;
Adam Langley95c29f32014-06-20 12:00:00 -0700350 const BIGNUM *ckinv;
351 BN_CTX *ctx = NULL;
352 const EC_GROUP *group;
353 ECDSA_SIG *ret;
354 const BIGNUM *priv_key;
355
356 if (eckey->ecdsa_meth && eckey->ecdsa_meth->sign) {
David Benjamin3570d732015-06-29 00:28:17 -0400357 OPENSSL_PUT_ERROR(ECDSA, ECDSA_R_NOT_IMPLEMENTED);
Adam Langley95c29f32014-06-20 12:00:00 -0700358 return NULL;
359 }
360
361 group = EC_KEY_get0_group(eckey);
362 priv_key = EC_KEY_get0_private_key(eckey);
363
364 if (group == NULL || priv_key == NULL) {
David Benjamin3570d732015-06-29 00:28:17 -0400365 OPENSSL_PUT_ERROR(ECDSA, ERR_R_PASSED_NULL_PARAMETER);
Adam Langley95c29f32014-06-20 12:00:00 -0700366 return NULL;
367 }
368
369 ret = ECDSA_SIG_new();
370 if (!ret) {
David Benjamin3570d732015-06-29 00:28:17 -0400371 OPENSSL_PUT_ERROR(ECDSA, ERR_R_MALLOC_FAILURE);
Adam Langley95c29f32014-06-20 12:00:00 -0700372 return NULL;
373 }
374 s = ret->s;
375
Brian Smitha3d9de02015-11-18 17:07:14 -1000376 if ((ctx = BN_CTX_new()) == NULL ||
377 (tmp = BN_new()) == NULL ||
378 (m = BN_new()) == NULL) {
David Benjamin3570d732015-06-29 00:28:17 -0400379 OPENSSL_PUT_ERROR(ECDSA, ERR_R_MALLOC_FAILURE);
Adam Langley95c29f32014-06-20 12:00:00 -0700380 goto err;
381 }
382
Brian Smitha3d9de02015-11-18 17:07:14 -1000383 const BIGNUM *order = EC_GROUP_get0_order(group);
384
Adam Langley95c29f32014-06-20 12:00:00 -0700385 if (!digest_to_bn(m, digest, digest_len, order)) {
386 goto err;
387 }
388 for (;;) {
389 if (in_kinv == NULL || in_r == NULL) {
Adam Langleyd4b4f082014-06-20 12:00:00 -0700390 if (!ecdsa_sign_setup(eckey, ctx, &kinv, &ret->r, digest, digest_len)) {
David Benjamin3570d732015-06-29 00:28:17 -0400391 OPENSSL_PUT_ERROR(ECDSA, ERR_R_ECDSA_LIB);
Adam Langley95c29f32014-06-20 12:00:00 -0700392 goto err;
393 }
394 ckinv = kinv;
395 } else {
396 ckinv = in_kinv;
397 if (BN_copy(ret->r, in_r) == NULL) {
David Benjamin3570d732015-06-29 00:28:17 -0400398 OPENSSL_PUT_ERROR(ECDSA, ERR_R_MALLOC_FAILURE);
Adam Langley95c29f32014-06-20 12:00:00 -0700399 goto err;
400 }
401 }
402
403 if (!BN_mod_mul(tmp, priv_key, ret->r, order, ctx)) {
David Benjamin3570d732015-06-29 00:28:17 -0400404 OPENSSL_PUT_ERROR(ECDSA, ERR_R_BN_LIB);
Adam Langley95c29f32014-06-20 12:00:00 -0700405 goto err;
406 }
407 if (!BN_mod_add_quick(s, tmp, m, order)) {
David Benjamin3570d732015-06-29 00:28:17 -0400408 OPENSSL_PUT_ERROR(ECDSA, ERR_R_BN_LIB);
Adam Langley95c29f32014-06-20 12:00:00 -0700409 goto err;
410 }
411 if (!BN_mod_mul(s, s, ckinv, order, ctx)) {
David Benjamin3570d732015-06-29 00:28:17 -0400412 OPENSSL_PUT_ERROR(ECDSA, ERR_R_BN_LIB);
Adam Langley95c29f32014-06-20 12:00:00 -0700413 goto err;
414 }
415 if (BN_is_zero(s)) {
416 /* if kinv and r have been supplied by the caller
417 * don't to generate new kinv and r values */
418 if (in_kinv != NULL && in_r != NULL) {
David Benjamin3570d732015-06-29 00:28:17 -0400419 OPENSSL_PUT_ERROR(ECDSA, ECDSA_R_NEED_NEW_SETUP_VALUES);
Adam Langley95c29f32014-06-20 12:00:00 -0700420 goto err;
421 }
422 } else {
423 /* s != 0 => we have a valid signature */
424 break;
425 }
426 }
427
428 ok = 1;
429
430err:
431 if (!ok) {
432 ECDSA_SIG_free(ret);
433 ret = NULL;
434 }
David Benjamincca4ba72015-04-22 15:49:27 -0400435 BN_CTX_free(ctx);
436 BN_clear_free(m);
437 BN_clear_free(tmp);
David Benjamincca4ba72015-04-22 15:49:27 -0400438 BN_clear_free(kinv);
Adam Langley95c29f32014-06-20 12:00:00 -0700439 return ret;
440}
441
442int ECDSA_sign_ex(int type, const uint8_t *digest, size_t digest_len,
443 uint8_t *sig, unsigned int *sig_len, const BIGNUM *kinv,
444 const BIGNUM *r, EC_KEY *eckey) {
David Benjamin87897a82015-06-11 23:30:53 -0400445 int ret = 0;
Adam Langley95c29f32014-06-20 12:00:00 -0700446 ECDSA_SIG *s = NULL;
447
448 if (eckey->ecdsa_meth && eckey->ecdsa_meth->sign) {
David Benjamin3570d732015-06-29 00:28:17 -0400449 OPENSSL_PUT_ERROR(ECDSA, ECDSA_R_NOT_IMPLEMENTED);
Adam Langley95c29f32014-06-20 12:00:00 -0700450 *sig_len = 0;
David Benjamin87897a82015-06-11 23:30:53 -0400451 goto err;
Adam Langley95c29f32014-06-20 12:00:00 -0700452 }
453
454 s = ECDSA_do_sign_ex(digest, digest_len, kinv, r, eckey);
455 if (s == NULL) {
456 *sig_len = 0;
David Benjamin87897a82015-06-11 23:30:53 -0400457 goto err;
Adam Langley95c29f32014-06-20 12:00:00 -0700458 }
David Benjamin87897a82015-06-11 23:30:53 -0400459
460 CBB cbb;
461 CBB_zero(&cbb);
462 size_t len;
463 if (!CBB_init_fixed(&cbb, sig, ECDSA_size(eckey)) ||
464 !ECDSA_SIG_marshal(&cbb, s) ||
465 !CBB_finish(&cbb, NULL, &len)) {
David Benjamin3570d732015-06-29 00:28:17 -0400466 OPENSSL_PUT_ERROR(ECDSA, ECDSA_R_ENCODE_ERROR);
David Benjamin87897a82015-06-11 23:30:53 -0400467 CBB_cleanup(&cbb);
468 *sig_len = 0;
469 goto err;
470 }
471 *sig_len = (unsigned)len;
472 ret = 1;
473
474err:
Adam Langley95c29f32014-06-20 12:00:00 -0700475 ECDSA_SIG_free(s);
David Benjamin87897a82015-06-11 23:30:53 -0400476 return ret;
Adam Langley95c29f32014-06-20 12:00:00 -0700477}