1 /* crypto/ecdsa/ecs_ossl.c */
3 * Written by Nils Larsch for the OpenSSL project
5 /* ====================================================================
6 * Copyright (c) 1998-2004 The OpenSSL Project. All rights reserved.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
17 * the documentation and/or other materials provided with the
20 * 3. All advertising materials mentioning features or use of this
21 * software must display the following acknowledgment:
22 * "This product includes software developed by the OpenSSL Project
23 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
25 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26 * endorse or promote products derived from this software without
27 * prior written permission. For written permission, please contact
28 * openssl-core@OpenSSL.org.
30 * 5. Products derived from this software may not be called "OpenSSL"
31 * nor may "OpenSSL" appear in their names without prior written
32 * permission of the OpenSSL Project.
34 * 6. Redistributions of any form whatsoever must retain the following
36 * "This product includes software developed by the OpenSSL Project
37 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
39 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
43 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50 * OF THE POSSIBILITY OF SUCH DAMAGE.
51 * ====================================================================
53 * This product includes cryptographic software written by Eric Young
54 * (eay@cryptsoft.com). This product includes software written by Tim
55 * Hudson (tjh@cryptsoft.com).
59 #define OPENSSL_FIPSAPI
62 #include <openssl/err.h>
63 #include <openssl/obj_mac.h>
64 #include <openssl/bn.h>
65 #include <openssl/rand.h>
67 static ECDSA_SIG *ecdsa_do_sign(const unsigned char *dgst, int dlen,
68 const BIGNUM *, const BIGNUM *, EC_KEY *eckey);
69 static int ecdsa_sign_setup(EC_KEY *eckey, BN_CTX *ctx_in,
70 BIGNUM **kinvp, BIGNUM **rp,
71 const unsigned char *dgst, int dlen);
72 static int ecdsa_do_verify(const unsigned char *dgst, int dgst_len,
73 const ECDSA_SIG *sig, EC_KEY *eckey);
75 static ECDSA_METHOD openssl_ecdsa_meth = {
76 "OpenSSL ECDSA method",
84 ECDSA_FLAG_FIPS_METHOD, /* flags */
88 const ECDSA_METHOD *ECDSA_OpenSSL(void)
90 return &openssl_ecdsa_meth;
93 static int ecdsa_sign_setup(EC_KEY *eckey, BN_CTX *ctx_in,
94 BIGNUM **kinvp, BIGNUM **rp,
95 const unsigned char *dgst, int dlen)
98 BIGNUM *k = NULL, *r = NULL, *order = NULL, *X = NULL;
99 EC_POINT *tmp_point=NULL;
100 const EC_GROUP *group;
103 if (eckey == NULL || (group = EC_KEY_get0_group(eckey)) == NULL)
105 ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP, ERR_R_PASSED_NULL_PARAMETER);
111 if ((ctx = BN_CTX_new()) == NULL)
113 ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP,ERR_R_MALLOC_FAILURE);
120 k = BN_new(); /* this value is later returned in *kinvp */
121 r = BN_new(); /* this value is later returned in *rp */
124 if (!k || !r || !order || !X)
126 ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP, ERR_R_MALLOC_FAILURE);
129 if ((tmp_point = EC_POINT_new(group)) == NULL)
131 ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP, ERR_R_EC_LIB);
134 if (!EC_GROUP_get_order(group, order, ctx))
136 ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP, ERR_R_EC_LIB);
141 if (!fips_check_ec_prng(eckey))
149 #ifndef OPENSSL_NO_SHA512
150 if (EC_KEY_get_nonce_from_hash(eckey))
152 if (!BN_generate_dsa_nonce(k, order, EC_KEY_get0_private_key(eckey),
155 ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP,
156 ECDSA_R_RANDOM_NUMBER_GENERATION_FAILED);
163 if (!BN_rand_range(k, order))
165 ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP,
166 ECDSA_R_RANDOM_NUMBER_GENERATION_FAILED);
170 while (BN_is_zero(k));
172 /* We do not want timing information to leak the length of k,
173 * so we compute G*k using an equivalent scalar of fixed
176 if (!BN_add(k, k, order)) goto err;
177 if (BN_num_bits(k) <= BN_num_bits(order))
178 if (!BN_add(k, k, order)) goto err;
180 /* compute r the x-coordinate of generator * k */
181 if (!EC_POINT_mul(group, tmp_point, k, NULL, NULL, ctx))
183 ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP, ERR_R_EC_LIB);
186 if (EC_METHOD_get_field_type(EC_GROUP_method_of(group)) == NID_X9_62_prime_field)
188 if (!EC_POINT_get_affine_coordinates_GFp(group,
189 tmp_point, X, NULL, ctx))
191 ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP,ERR_R_EC_LIB);
195 #ifndef OPENSSL_NO_EC2M
196 else /* NID_X9_62_characteristic_two_field */
198 if (!EC_POINT_get_affine_coordinates_GF2m(group,
199 tmp_point, X, NULL, ctx))
201 ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP,ERR_R_EC_LIB);
206 if (!BN_nnmod(r, X, order, ctx))
208 ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP, ERR_R_BN_LIB);
212 while (BN_is_zero(r));
214 /* compute the inverse of k */
215 if (!BN_mod_inverse(k, k, order, ctx))
217 ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP, ERR_R_BN_LIB);
220 /* clear old values if necessary */
224 BN_clear_free(*kinvp);
225 /* save the pre-computed values */
232 if (k != NULL) BN_clear_free(k);
233 if (r != NULL) BN_clear_free(r);
239 if (tmp_point != NULL)
240 EC_POINT_free(tmp_point);
247 static ECDSA_SIG *ecdsa_do_sign(const unsigned char *dgst, int dgst_len,
248 const BIGNUM *in_kinv, const BIGNUM *in_r, EC_KEY *eckey)
251 BIGNUM *kinv=NULL, *s, *m=NULL,*tmp=NULL,*order=NULL;
254 const EC_GROUP *group;
257 const BIGNUM *priv_key;
260 if(FIPS_selftest_failed())
262 FIPSerr(FIPS_F_ECDSA_DO_SIGN,FIPS_R_FIPS_SELFTEST_FAILED);
267 ecdsa = ecdsa_check(eckey);
268 group = EC_KEY_get0_group(eckey);
269 priv_key = EC_KEY_get0_private_key(eckey);
271 if (group == NULL || priv_key == NULL || ecdsa == NULL)
273 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN, ERR_R_PASSED_NULL_PARAMETER);
278 if (!fips_check_ec_prng(eckey))
282 ret = ECDSA_SIG_new();
285 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN, ERR_R_MALLOC_FAILURE);
290 if ((ctx = BN_CTX_new()) == NULL || (order = BN_new()) == NULL ||
291 (tmp = BN_new()) == NULL || (m = BN_new()) == NULL)
293 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN, ERR_R_MALLOC_FAILURE);
297 if (!EC_GROUP_get_order(group, order, ctx))
299 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN, ERR_R_EC_LIB);
302 i = BN_num_bits(order);
303 /* Need to truncate digest if it is too long: first truncate whole
306 if (8 * dgst_len > i)
307 dgst_len = (i + 7)/8;
308 if (!BN_bin2bn(dgst, dgst_len, m))
310 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN, ERR_R_BN_LIB);
313 /* If still too long truncate remaining bits with a shift */
314 if ((8 * dgst_len > i) && !BN_rshift(m, m, 8 - (i & 0x7)))
316 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN, ERR_R_BN_LIB);
321 if (in_kinv == NULL || in_r == NULL)
323 if (!ecdsa->meth->ecdsa_sign_setup(eckey, ctx, &kinv, &ret->r, dgst, dgst_len))
325 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN,ERR_R_ECDSA_LIB);
333 if (BN_copy(ret->r, in_r) == NULL)
335 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN, ERR_R_MALLOC_FAILURE);
340 if (!BN_mod_mul(tmp, priv_key, ret->r, order, ctx))
342 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN, ERR_R_BN_LIB);
345 if (!BN_mod_add_quick(s, tmp, m, order))
347 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN, ERR_R_BN_LIB);
350 if (!BN_mod_mul(s, s, ckinv, order, ctx))
352 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN, ERR_R_BN_LIB);
357 /* if kinv and r have been supplied by the caller
358 * don't to generate new kinv and r values */
359 if (in_kinv != NULL && in_r != NULL)
361 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN, ECDSA_R_NEED_NEW_SETUP_VALUES);
366 /* s != 0 => we have a valid signature */
391 static int ecdsa_do_verify(const unsigned char *dgst, int dgst_len,
392 const ECDSA_SIG *sig, EC_KEY *eckey)
396 BIGNUM *order, *u1, *u2, *m, *X;
397 EC_POINT *point = NULL;
398 const EC_GROUP *group;
399 const EC_POINT *pub_key;
402 if(FIPS_selftest_failed())
404 FIPSerr(FIPS_F_ECDSA_DO_VERIFY,FIPS_R_FIPS_SELFTEST_FAILED);
409 /* check input values */
410 if (eckey == NULL || (group = EC_KEY_get0_group(eckey)) == NULL ||
411 (pub_key = EC_KEY_get0_public_key(eckey)) == NULL || sig == NULL)
413 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ECDSA_R_MISSING_PARAMETERS);
420 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_MALLOC_FAILURE);
424 order = BN_CTX_get(ctx);
425 u1 = BN_CTX_get(ctx);
426 u2 = BN_CTX_get(ctx);
431 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_BN_LIB);
435 if (!EC_GROUP_get_order(group, order, ctx))
437 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_EC_LIB);
441 if (BN_is_zero(sig->r) || BN_is_negative(sig->r) ||
442 BN_ucmp(sig->r, order) >= 0 || BN_is_zero(sig->s) ||
443 BN_is_negative(sig->s) || BN_ucmp(sig->s, order) >= 0)
445 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ECDSA_R_BAD_SIGNATURE);
446 ret = 0; /* signature is invalid */
449 /* calculate tmp1 = inv(S) mod order */
450 if (!BN_mod_inverse(u2, sig->s, order, ctx))
452 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_BN_LIB);
456 i = BN_num_bits(order);
457 /* Need to truncate digest if it is too long: first truncate whole
460 if (8 * dgst_len > i)
461 dgst_len = (i + 7)/8;
462 if (!BN_bin2bn(dgst, dgst_len, m))
464 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_BN_LIB);
467 /* If still too long truncate remaining bits with a shift */
468 if ((8 * dgst_len > i) && !BN_rshift(m, m, 8 - (i & 0x7)))
470 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_BN_LIB);
473 /* u1 = m * tmp mod order */
474 if (!BN_mod_mul(u1, m, u2, order, ctx))
476 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_BN_LIB);
479 /* u2 = r * w mod q */
480 if (!BN_mod_mul(u2, sig->r, u2, order, ctx))
482 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_BN_LIB);
486 if ((point = EC_POINT_new(group)) == NULL)
488 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_MALLOC_FAILURE);
491 if (!EC_POINT_mul(group, point, u1, pub_key, u2, ctx))
493 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_EC_LIB);
496 if (EC_METHOD_get_field_type(EC_GROUP_method_of(group)) == NID_X9_62_prime_field)
498 if (!EC_POINT_get_affine_coordinates_GFp(group,
499 point, X, NULL, ctx))
501 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_EC_LIB);
505 #ifndef OPENSSL_NO_EC2M
506 else /* NID_X9_62_characteristic_two_field */
508 if (!EC_POINT_get_affine_coordinates_GF2m(group,
509 point, X, NULL, ctx))
511 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_EC_LIB);
516 if (!BN_nnmod(u1, X, order, ctx))
518 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_BN_LIB);
521 /* if the signature is correct u1 is equal to sig->r */
522 ret = (BN_ucmp(u1, sig->r) == 0);
527 EC_POINT_free(point);
531 #ifdef OPENSSL_FIPSCANISTER
532 /* FIPS stanadlone version of ecdsa_check: just return FIPS method */
533 ECDSA_DATA *fips_ecdsa_check(EC_KEY *key)
535 static ECDSA_DATA rv = {
541 /* Standalone digest sign and verify */
542 int FIPS_ecdsa_verify_digest(EC_KEY *key,
543 const unsigned char *dig, int dlen, ECDSA_SIG *s)
545 ECDSA_DATA *ecdsa = ecdsa_check(key);
548 return ecdsa->meth->ecdsa_do_verify(dig, dlen, s, key);
550 ECDSA_SIG * FIPS_ecdsa_sign_digest(EC_KEY *key,
551 const unsigned char *dig, int dlen)
553 ECDSA_DATA *ecdsa = ecdsa_check(key);
556 return ecdsa->meth->ecdsa_do_sign(dig, dlen, NULL, NULL, key);