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).
60 #include <openssl/err.h>
61 #include <openssl/obj_mac.h>
62 #include <openssl/bn.h>
64 static ECDSA_SIG
*ecdsa_do_sign(const unsigned char *dgst
, int dlen
,
65 const BIGNUM
*, const BIGNUM
*, EC_KEY
*eckey
);
66 static int ecdsa_sign_setup(EC_KEY
*eckey
, BN_CTX
*ctx_in
, BIGNUM
**kinvp
,
68 static int ecdsa_do_verify(const unsigned char *dgst
, int dgst_len
,
69 const ECDSA_SIG
*sig
, EC_KEY
*eckey
);
71 static ECDSA_METHOD openssl_ecdsa_meth
= {
72 "OpenSSL ECDSA method",
84 const ECDSA_METHOD
*ECDSA_OpenSSL(void)
86 return &openssl_ecdsa_meth
;
89 static int ecdsa_sign_setup(EC_KEY
*eckey
, BN_CTX
*ctx_in
, BIGNUM
**kinvp
,
93 BIGNUM
*k
= NULL
, *r
= NULL
, *order
= NULL
, *X
= NULL
;
94 EC_POINT
*tmp_point
=NULL
;
95 const EC_GROUP
*group
;
98 if (eckey
== NULL
|| (group
= EC_KEY_get0_group(eckey
)) == NULL
)
100 ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP
, ERR_R_PASSED_NULL_PARAMETER
);
106 if ((ctx
= BN_CTX_new()) == NULL
)
108 ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP
,ERR_R_MALLOC_FAILURE
);
115 k
= BN_new(); /* this value is later returned in *kinvp */
116 r
= BN_new(); /* this value is later returned in *rp */
119 if (!k
|| !r
|| !order
|| !X
)
121 ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP
, ERR_R_MALLOC_FAILURE
);
124 if ((tmp_point
= EC_POINT_new(group
)) == NULL
)
126 ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP
, ERR_R_EC_LIB
);
129 if (!EC_GROUP_get_order(group
, order
, ctx
))
131 ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP
, ERR_R_EC_LIB
);
139 if (!BN_rand_range(k
, order
))
141 ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP
,
142 ECDSA_R_RANDOM_NUMBER_GENERATION_FAILED
);
145 while (BN_is_zero(k
));
147 /* We do not want timing information to leak the length of k,
148 * so we compute G*k using an equivalent scalar of fixed
151 if (!BN_add(k
, k
, order
)) goto err
;
152 if (BN_num_bits(k
) <= BN_num_bits(order
))
153 if (!BN_add(k
, k
, order
)) goto err
;
155 /* compute r the x-coordinate of generator * k */
156 if (!EC_POINT_mul(group
, tmp_point
, k
, NULL
, NULL
, ctx
))
158 ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP
, ERR_R_EC_LIB
);
161 if (EC_METHOD_get_field_type(EC_GROUP_method_of(group
)) == NID_X9_62_prime_field
)
163 if (!EC_POINT_get_affine_coordinates_GFp(group
,
164 tmp_point
, X
, NULL
, ctx
))
166 ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP
,ERR_R_EC_LIB
);
170 #ifndef OPENSSL_NO_EC2M
171 else /* NID_X9_62_characteristic_two_field */
173 if (!EC_POINT_get_affine_coordinates_GF2m(group
,
174 tmp_point
, X
, NULL
, ctx
))
176 ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP
,ERR_R_EC_LIB
);
181 if (!BN_nnmod(r
, X
, order
, ctx
))
183 ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP
, ERR_R_BN_LIB
);
187 while (BN_is_zero(r
));
189 /* compute the inverse of k */
190 if (!BN_mod_inverse(k
, k
, order
, ctx
))
192 ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP
, ERR_R_BN_LIB
);
195 /* clear old values if necessary */
199 BN_clear_free(*kinvp
);
200 /* save the pre-computed values */
207 if (k
!= NULL
) BN_clear_free(k
);
208 if (r
!= NULL
) BN_clear_free(r
);
214 if (tmp_point
!= NULL
)
215 EC_POINT_free(tmp_point
);
222 static ECDSA_SIG
*ecdsa_do_sign(const unsigned char *dgst
, int dgst_len
,
223 const BIGNUM
*in_kinv
, const BIGNUM
*in_r
, EC_KEY
*eckey
)
226 BIGNUM
*kinv
=NULL
, *s
, *m
=NULL
,*tmp
=NULL
,*order
=NULL
;
229 const EC_GROUP
*group
;
232 const BIGNUM
*priv_key
;
234 ecdsa
= ecdsa_check(eckey
);
235 group
= EC_KEY_get0_group(eckey
);
236 priv_key
= EC_KEY_get0_private_key(eckey
);
238 if (group
== NULL
|| priv_key
== NULL
|| ecdsa
== NULL
)
240 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN
, ERR_R_PASSED_NULL_PARAMETER
);
244 ret
= ECDSA_SIG_new();
247 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN
, ERR_R_MALLOC_FAILURE
);
252 if ((ctx
= BN_CTX_new()) == NULL
|| (order
= BN_new()) == NULL
||
253 (tmp
= BN_new()) == NULL
|| (m
= BN_new()) == NULL
)
255 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN
, ERR_R_MALLOC_FAILURE
);
259 if (!EC_GROUP_get_order(group
, order
, ctx
))
261 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN
, ERR_R_EC_LIB
);
264 i
= BN_num_bits(order
);
265 /* Need to truncate digest if it is too long: first truncate whole
268 if (8 * dgst_len
> i
)
269 dgst_len
= (i
+ 7)/8;
270 if (!BN_bin2bn(dgst
, dgst_len
, m
))
272 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN
, ERR_R_BN_LIB
);
275 /* If still too long truncate remaining bits with a shift */
276 if ((8 * dgst_len
> i
) && !BN_rshift(m
, m
, 8 - (i
& 0x7)))
278 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN
, ERR_R_BN_LIB
);
283 if (in_kinv
== NULL
|| in_r
== NULL
)
285 if (!ECDSA_sign_setup(eckey
, ctx
, &kinv
, &ret
->r
))
287 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN
,ERR_R_ECDSA_LIB
);
295 if (BN_copy(ret
->r
, in_r
) == NULL
)
297 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN
, ERR_R_MALLOC_FAILURE
);
302 if (!BN_mod_mul(tmp
, priv_key
, ret
->r
, order
, ctx
))
304 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN
, ERR_R_BN_LIB
);
307 if (!BN_mod_add_quick(s
, tmp
, m
, order
))
309 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN
, ERR_R_BN_LIB
);
312 if (!BN_mod_mul(s
, s
, ckinv
, order
, ctx
))
314 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN
, ERR_R_BN_LIB
);
319 /* if kinv and r have been supplied by the caller
320 * don't to generate new kinv and r values */
321 if (in_kinv
!= NULL
&& in_r
!= NULL
)
323 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN
, ECDSA_R_NEED_NEW_SETUP_VALUES
);
328 /* s != 0 => we have a valid signature */
353 static int ecdsa_do_verify(const unsigned char *dgst
, int dgst_len
,
354 const ECDSA_SIG
*sig
, EC_KEY
*eckey
)
358 BIGNUM
*order
, *u1
, *u2
, *m
, *X
;
359 EC_POINT
*point
= NULL
;
360 const EC_GROUP
*group
;
361 const EC_POINT
*pub_key
;
363 /* check input values */
364 if (eckey
== NULL
|| (group
= EC_KEY_get0_group(eckey
)) == NULL
||
365 (pub_key
= EC_KEY_get0_public_key(eckey
)) == NULL
|| sig
== NULL
)
367 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY
, ECDSA_R_MISSING_PARAMETERS
);
374 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY
, ERR_R_MALLOC_FAILURE
);
378 order
= BN_CTX_get(ctx
);
379 u1
= BN_CTX_get(ctx
);
380 u2
= BN_CTX_get(ctx
);
385 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY
, ERR_R_BN_LIB
);
389 if (!EC_GROUP_get_order(group
, order
, ctx
))
391 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY
, ERR_R_EC_LIB
);
395 if (BN_is_zero(sig
->r
) || BN_is_negative(sig
->r
) ||
396 BN_ucmp(sig
->r
, order
) >= 0 || BN_is_zero(sig
->s
) ||
397 BN_is_negative(sig
->s
) || BN_ucmp(sig
->s
, order
) >= 0)
399 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY
, ECDSA_R_BAD_SIGNATURE
);
400 ret
= 0; /* signature is invalid */
403 /* calculate tmp1 = inv(S) mod order */
404 if (!BN_mod_inverse(u2
, sig
->s
, order
, ctx
))
406 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY
, ERR_R_BN_LIB
);
410 i
= BN_num_bits(order
);
411 /* Need to truncate digest if it is too long: first truncate whole
414 if (8 * dgst_len
> i
)
415 dgst_len
= (i
+ 7)/8;
416 if (!BN_bin2bn(dgst
, dgst_len
, m
))
418 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY
, ERR_R_BN_LIB
);
421 /* If still too long truncate remaining bits with a shift */
422 if ((8 * dgst_len
> i
) && !BN_rshift(m
, m
, 8 - (i
& 0x7)))
424 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY
, ERR_R_BN_LIB
);
427 /* u1 = m * tmp mod order */
428 if (!BN_mod_mul(u1
, m
, u2
, order
, ctx
))
430 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY
, ERR_R_BN_LIB
);
433 /* u2 = r * w mod q */
434 if (!BN_mod_mul(u2
, sig
->r
, u2
, order
, ctx
))
436 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY
, ERR_R_BN_LIB
);
440 if ((point
= EC_POINT_new(group
)) == NULL
)
442 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY
, ERR_R_MALLOC_FAILURE
);
445 if (!EC_POINT_mul(group
, point
, u1
, pub_key
, u2
, ctx
))
447 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY
, ERR_R_EC_LIB
);
450 if (EC_METHOD_get_field_type(EC_GROUP_method_of(group
)) == NID_X9_62_prime_field
)
452 if (!EC_POINT_get_affine_coordinates_GFp(group
,
453 point
, X
, NULL
, ctx
))
455 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY
, ERR_R_EC_LIB
);
459 #ifndef OPENSSL_NO_EC2M
460 else /* NID_X9_62_characteristic_two_field */
462 if (!EC_POINT_get_affine_coordinates_GF2m(group
,
463 point
, X
, NULL
, ctx
))
465 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY
, ERR_R_EC_LIB
);
470 if (!BN_nnmod(u1
, X
, order
, ctx
))
472 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY
, ERR_R_BN_LIB
);
475 /* if the signature is correct u1 is equal to sig->r */
476 ret
= (BN_ucmp(u1
, sig
->r
) == 0);
481 EC_POINT_free(point
);