40742bdf0625ec916c287596455cf0a1b230be25
[openssl.git] / crypto / ec / ecdsa_ossl.c
1 /* crypto/ec/ecdsa_ossl.c */
2 /*
3  * Written by Nils Larsch for the OpenSSL project
4  */
5 /* ====================================================================
6  * Copyright (c) 1998-2004 The OpenSSL Project.  All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  *
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
18  *    distribution.
19  *
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/)"
24  *
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.
29  *
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.
33  *
34  * 6. Redistributions of any form whatsoever must retain the following
35  *    acknowledgment:
36  *    "This product includes software developed by the OpenSSL Project
37  *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
38  *
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  * ====================================================================
52  *
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).
56  *
57  */
58
59 #include <string.h>
60 #include <openssl/err.h>
61 #include <openssl/obj_mac.h>
62 #include <openssl/bn.h>
63 #include <openssl/rand.h>
64 #include <openssl/ec.h>
65 #include "ec_lcl.h"
66
67 int ossl_ecdsa_sign(int type, const unsigned char *dgst, int dlen,
68                     unsigned char *sig, unsigned int *siglen,
69                     const BIGNUM *kinv, const BIGNUM *r, EC_KEY *eckey)
70 {
71     ECDSA_SIG *s;
72     RAND_seed(dgst, dlen);
73     s = ECDSA_do_sign_ex(dgst, dlen, kinv, r, eckey);
74     if (s == NULL) {
75         *siglen = 0;
76         return 0;
77     }
78     *siglen = i2d_ECDSA_SIG(s, &sig);
79     ECDSA_SIG_free(s);
80     return 1;
81 }
82
83 static int ecdsa_sign_setup(EC_KEY *eckey, BN_CTX *ctx_in,
84                             BIGNUM **kinvp, BIGNUM **rp,
85                             const unsigned char *dgst, int dlen)
86 {
87     BN_CTX *ctx = NULL;
88     BIGNUM *k = NULL, *r = NULL, *order = NULL, *X = NULL;
89     EC_POINT *tmp_point = NULL;
90     const EC_GROUP *group;
91     int ret = 0;
92
93     if (eckey == NULL || (group = EC_KEY_get0_group(eckey)) == NULL) {
94         ECerr(EC_F_ECDSA_SIGN_SETUP, ERR_R_PASSED_NULL_PARAMETER);
95         return 0;
96     }
97
98     if (ctx_in == NULL) {
99         if ((ctx = BN_CTX_new()) == NULL) {
100             ECerr(EC_F_ECDSA_SIGN_SETUP, ERR_R_MALLOC_FAILURE);
101             return 0;
102         }
103     } else
104         ctx = ctx_in;
105
106     k = BN_new();               /* this value is later returned in *kinvp */
107     r = BN_new();               /* this value is later returned in *rp */
108     order = BN_new();
109     X = BN_new();
110     if (k == NULL || r == NULL || order == NULL || X == NULL) {
111         ECerr(EC_F_ECDSA_SIGN_SETUP, ERR_R_MALLOC_FAILURE);
112         goto err;
113     }
114     if ((tmp_point = EC_POINT_new(group)) == NULL) {
115         ECerr(EC_F_ECDSA_SIGN_SETUP, ERR_R_EC_LIB);
116         goto err;
117     }
118     if (!EC_GROUP_get_order(group, order, ctx)) {
119         ECerr(EC_F_ECDSA_SIGN_SETUP, ERR_R_EC_LIB);
120         goto err;
121     }
122
123     do {
124         /* get random k */
125         do
126             if (dgst != NULL) {
127                 if (!BN_generate_dsa_nonce
128                     (k, order, EC_KEY_get0_private_key(eckey), dgst, dlen,
129                      ctx)) {
130                     ECerr(EC_F_ECDSA_SIGN_SETUP,
131                              EC_R_RANDOM_NUMBER_GENERATION_FAILED);
132                     goto err;
133                 }
134             } else {
135                 if (!BN_rand_range(k, order)) {
136                     ECerr(EC_F_ECDSA_SIGN_SETUP,
137                              EC_R_RANDOM_NUMBER_GENERATION_FAILED);
138                     goto err;
139                 }
140             }
141         while (BN_is_zero(k));
142
143         /*
144          * We do not want timing information to leak the length of k, so we
145          * compute G*k using an equivalent scalar of fixed bit-length.
146          */
147
148         if (!BN_add(k, k, order))
149             goto err;
150         if (BN_num_bits(k) <= BN_num_bits(order))
151             if (!BN_add(k, k, order))
152                 goto err;
153
154         /* compute r the x-coordinate of generator * k */
155         if (!EC_POINT_mul(group, tmp_point, k, NULL, NULL, ctx)) {
156             ECerr(EC_F_ECDSA_SIGN_SETUP, ERR_R_EC_LIB);
157             goto err;
158         }
159         if (EC_METHOD_get_field_type(EC_GROUP_method_of(group)) ==
160             NID_X9_62_prime_field) {
161             if (!EC_POINT_get_affine_coordinates_GFp
162                 (group, tmp_point, X, NULL, ctx)) {
163                 ECerr(EC_F_ECDSA_SIGN_SETUP, ERR_R_EC_LIB);
164                 goto err;
165             }
166         }
167 #ifndef OPENSSL_NO_EC2M
168         else {                  /* NID_X9_62_characteristic_two_field */
169
170             if (!EC_POINT_get_affine_coordinates_GF2m(group,
171                                                       tmp_point, X, NULL,
172                                                       ctx)) {
173                 ECerr(EC_F_ECDSA_SIGN_SETUP, ERR_R_EC_LIB);
174                 goto err;
175             }
176         }
177 #endif
178         if (!BN_nnmod(r, X, order, ctx)) {
179             ECerr(EC_F_ECDSA_SIGN_SETUP, ERR_R_BN_LIB);
180             goto err;
181         }
182     }
183     while (BN_is_zero(r));
184
185     /* compute the inverse of k */
186     if (EC_GROUP_get_mont_data(group) != NULL) {
187         /*
188          * We want inverse in constant time, therefore we utilize the fact
189          * order must be prime and use Fermats Little Theorem instead.
190          */
191         if (!BN_set_word(X, 2)) {
192             ECerr(EC_F_ECDSA_SIGN_SETUP, ERR_R_BN_LIB);
193             goto err;
194         }
195         if (!BN_mod_sub(X, order, X, order, ctx)) {
196             ECerr(EC_F_ECDSA_SIGN_SETUP, ERR_R_BN_LIB);
197             goto err;
198         }
199         BN_set_flags(X, BN_FLG_CONSTTIME);
200         if (!BN_mod_exp_mont_consttime
201             (k, k, X, order, ctx, EC_GROUP_get_mont_data(group))) {
202             ECerr(EC_F_ECDSA_SIGN_SETUP, ERR_R_BN_LIB);
203             goto err;
204         }
205     } else {
206         if (!BN_mod_inverse(k, k, order, ctx)) {
207             ECerr(EC_F_ECDSA_SIGN_SETUP, ERR_R_BN_LIB);
208             goto err;
209         }
210     }
211
212     /* clear old values if necessary */
213     BN_clear_free(*rp);
214     BN_clear_free(*kinvp);
215     /* save the pre-computed values  */
216     *rp = r;
217     *kinvp = k;
218     ret = 1;
219  err:
220     if (!ret) {
221         BN_clear_free(k);
222         BN_clear_free(r);
223     }
224     if (ctx != ctx_in)
225         BN_CTX_free(ctx);
226     BN_free(order);
227     EC_POINT_free(tmp_point);
228     BN_clear_free(X);
229     return (ret);
230 }
231
232 int ossl_ecdsa_sign_setup(EC_KEY *eckey, BN_CTX *ctx_in, BIGNUM **kinvp,
233                           BIGNUM **rp)
234 {
235     return ecdsa_sign_setup(eckey, ctx_in, kinvp, rp, NULL, 0);
236 }
237
238 ECDSA_SIG *ossl_ecdsa_sign_sig(const unsigned char *dgst, int dgst_len,
239                                const BIGNUM *in_kinv, const BIGNUM *in_r,
240                                EC_KEY *eckey)
241 {
242     int ok = 0, i;
243     BIGNUM *kinv = NULL, *s, *m = NULL, *tmp = NULL, *order = NULL;
244     const BIGNUM *ckinv;
245     BN_CTX *ctx = NULL;
246     const EC_GROUP *group;
247     ECDSA_SIG *ret;
248     const BIGNUM *priv_key;
249
250     group = EC_KEY_get0_group(eckey);
251     priv_key = EC_KEY_get0_private_key(eckey);
252
253     if (group == NULL || priv_key == NULL) {
254         ECerr(EC_F_OSSL_ECDSA_SIGN_SIG, ERR_R_PASSED_NULL_PARAMETER);
255         return NULL;
256     }
257
258     ret = ECDSA_SIG_new();
259     if (ret == NULL) {
260         ECerr(EC_F_OSSL_ECDSA_SIGN_SIG, ERR_R_MALLOC_FAILURE);
261         return NULL;
262     }
263     s = ret->s;
264
265     if ((ctx = BN_CTX_new()) == NULL || (order = BN_new()) == NULL ||
266         (tmp = BN_new()) == NULL || (m = BN_new()) == NULL) {
267         ECerr(EC_F_OSSL_ECDSA_SIGN_SIG, ERR_R_MALLOC_FAILURE);
268         goto err;
269     }
270
271     if (!EC_GROUP_get_order(group, order, ctx)) {
272         ECerr(EC_F_OSSL_ECDSA_SIGN_SIG, ERR_R_EC_LIB);
273         goto err;
274     }
275     i = BN_num_bits(order);
276     /*
277      * Need to truncate digest if it is too long: first truncate whole bytes.
278      */
279     if (8 * dgst_len > i)
280         dgst_len = (i + 7) / 8;
281     if (!BN_bin2bn(dgst, dgst_len, m)) {
282         ECerr(EC_F_OSSL_ECDSA_SIGN_SIG, ERR_R_BN_LIB);
283         goto err;
284     }
285     /* If still too long truncate remaining bits with a shift */
286     if ((8 * dgst_len > i) && !BN_rshift(m, m, 8 - (i & 0x7))) {
287         ECerr(EC_F_OSSL_ECDSA_SIGN_SIG, ERR_R_BN_LIB);
288         goto err;
289     }
290     do {
291         if (in_kinv == NULL || in_r == NULL) {
292             if (!ecdsa_sign_setup(eckey, ctx, &kinv, &ret->r, dgst, dgst_len)) {
293                 ECerr(EC_F_OSSL_ECDSA_SIGN_SIG, ERR_R_ECDSA_LIB);
294                 goto err;
295             }
296             ckinv = kinv;
297         } else {
298             ckinv = in_kinv;
299             if (BN_copy(ret->r, in_r) == NULL) {
300                 ECerr(EC_F_OSSL_ECDSA_SIGN_SIG, ERR_R_MALLOC_FAILURE);
301                 goto err;
302             }
303         }
304
305         if (!BN_mod_mul(tmp, priv_key, ret->r, order, ctx)) {
306             ECerr(EC_F_OSSL_ECDSA_SIGN_SIG, ERR_R_BN_LIB);
307             goto err;
308         }
309         if (!BN_mod_add_quick(s, tmp, m, order)) {
310             ECerr(EC_F_OSSL_ECDSA_SIGN_SIG, ERR_R_BN_LIB);
311             goto err;
312         }
313         if (!BN_mod_mul(s, s, ckinv, order, ctx)) {
314             ECerr(EC_F_OSSL_ECDSA_SIGN_SIG, ERR_R_BN_LIB);
315             goto err;
316         }
317         if (BN_is_zero(s)) {
318             /*
319              * if kinv and r have been supplied by the caller don't to
320              * generate new kinv and r values
321              */
322             if (in_kinv != NULL && in_r != NULL) {
323                 ECerr(EC_F_OSSL_ECDSA_SIGN_SIG, EC_R_NEED_NEW_SETUP_VALUES);
324                 goto err;
325             }
326         } else
327             /* s != 0 => we have a valid signature */
328             break;
329     }
330     while (1);
331
332     ok = 1;
333  err:
334     if (!ok) {
335         ECDSA_SIG_free(ret);
336         ret = NULL;
337     }
338     BN_CTX_free(ctx);
339     BN_clear_free(m);
340     BN_clear_free(tmp);
341     BN_free(order);
342     BN_clear_free(kinv);
343     return ret;
344 }
345
346 /*-
347  * returns
348  *      1: correct signature
349  *      0: incorrect signature
350  *     -1: error
351  */
352 int ossl_ecdsa_verify(int type, const unsigned char *dgst, int dgst_len,
353                       const unsigned char *sigbuf, int sig_len, EC_KEY *eckey)
354 {
355     ECDSA_SIG *s;
356     const unsigned char *p = sigbuf;
357     unsigned char *der = NULL;
358     int derlen = -1;
359     int ret = -1;
360
361     s = ECDSA_SIG_new();
362     if (s == NULL)
363         return (ret);
364     if (d2i_ECDSA_SIG(&s, &p, sig_len) == NULL)
365         goto err;
366     /* Ensure signature uses DER and doesn't have trailing garbage */
367     derlen = i2d_ECDSA_SIG(s, &der);
368     if (derlen != sig_len || memcmp(sigbuf, der, derlen))
369         goto err;
370     ret = ECDSA_do_verify(dgst, dgst_len, s, eckey);
371  err:
372     OPENSSL_clear_free(der, derlen);
373     ECDSA_SIG_free(s);
374     return (ret);
375 }
376
377 int ossl_ecdsa_verify_sig(const unsigned char *dgst, int dgst_len,
378                           const ECDSA_SIG *sig, EC_KEY *eckey)
379 {
380     int ret = -1, i;
381     BN_CTX *ctx;
382     BIGNUM *order, *u1, *u2, *m, *X;
383     EC_POINT *point = NULL;
384     const EC_GROUP *group;
385     const EC_POINT *pub_key;
386
387     /* check input values */
388     if (eckey == NULL || (group = EC_KEY_get0_group(eckey)) == NULL ||
389         (pub_key = EC_KEY_get0_public_key(eckey)) == NULL || sig == NULL) {
390         ECerr(EC_F_OSSL_ECDSA_VERIFY_SIG, EC_R_MISSING_PARAMETERS);
391         return -1;
392     }
393
394     ctx = BN_CTX_new();
395     if (ctx == NULL) {
396         ECerr(EC_F_OSSL_ECDSA_VERIFY_SIG, ERR_R_MALLOC_FAILURE);
397         return -1;
398     }
399     BN_CTX_start(ctx);
400     order = BN_CTX_get(ctx);
401     u1 = BN_CTX_get(ctx);
402     u2 = BN_CTX_get(ctx);
403     m = BN_CTX_get(ctx);
404     X = BN_CTX_get(ctx);
405     if (!X) {
406         ECerr(EC_F_OSSL_ECDSA_VERIFY_SIG, ERR_R_BN_LIB);
407         goto err;
408     }
409
410     if (!EC_GROUP_get_order(group, order, ctx)) {
411         ECerr(EC_F_OSSL_ECDSA_VERIFY_SIG, ERR_R_EC_LIB);
412         goto err;
413     }
414
415     if (BN_is_zero(sig->r) || BN_is_negative(sig->r) ||
416         BN_ucmp(sig->r, order) >= 0 || BN_is_zero(sig->s) ||
417         BN_is_negative(sig->s) || BN_ucmp(sig->s, order) >= 0) {
418         ECerr(EC_F_OSSL_ECDSA_VERIFY_SIG, EC_R_BAD_SIGNATURE);
419         ret = 0;                /* signature is invalid */
420         goto err;
421     }
422     /* calculate tmp1 = inv(S) mod order */
423     if (!BN_mod_inverse(u2, sig->s, order, ctx)) {
424         ECerr(EC_F_OSSL_ECDSA_VERIFY_SIG, ERR_R_BN_LIB);
425         goto err;
426     }
427     /* digest -> m */
428     i = BN_num_bits(order);
429     /*
430      * Need to truncate digest if it is too long: first truncate whole bytes.
431      */
432     if (8 * dgst_len > i)
433         dgst_len = (i + 7) / 8;
434     if (!BN_bin2bn(dgst, dgst_len, m)) {
435         ECerr(EC_F_OSSL_ECDSA_VERIFY_SIG, ERR_R_BN_LIB);
436         goto err;
437     }
438     /* If still too long truncate remaining bits with a shift */
439     if ((8 * dgst_len > i) && !BN_rshift(m, m, 8 - (i & 0x7))) {
440         ECerr(EC_F_OSSL_ECDSA_VERIFY_SIG, ERR_R_BN_LIB);
441         goto err;
442     }
443     /* u1 = m * tmp mod order */
444     if (!BN_mod_mul(u1, m, u2, order, ctx)) {
445         ECerr(EC_F_OSSL_ECDSA_VERIFY_SIG, ERR_R_BN_LIB);
446         goto err;
447     }
448     /* u2 = r * w mod q */
449     if (!BN_mod_mul(u2, sig->r, u2, order, ctx)) {
450         ECerr(EC_F_OSSL_ECDSA_VERIFY_SIG, ERR_R_BN_LIB);
451         goto err;
452     }
453
454     if ((point = EC_POINT_new(group)) == NULL) {
455         ECerr(EC_F_OSSL_ECDSA_VERIFY_SIG, ERR_R_MALLOC_FAILURE);
456         goto err;
457     }
458     if (!EC_POINT_mul(group, point, u1, pub_key, u2, ctx)) {
459         ECerr(EC_F_OSSL_ECDSA_VERIFY_SIG, ERR_R_EC_LIB);
460         goto err;
461     }
462     if (EC_METHOD_get_field_type(EC_GROUP_method_of(group)) ==
463         NID_X9_62_prime_field) {
464         if (!EC_POINT_get_affine_coordinates_GFp(group, point, X, NULL, ctx)) {
465             ECerr(EC_F_OSSL_ECDSA_VERIFY_SIG, ERR_R_EC_LIB);
466             goto err;
467         }
468     }
469 #ifndef OPENSSL_NO_EC2M
470     else {                      /* NID_X9_62_characteristic_two_field */
471
472         if (!EC_POINT_get_affine_coordinates_GF2m(group, point, X, NULL, ctx)) {
473             ECerr(EC_F_OSSL_ECDSA_VERIFY_SIG, ERR_R_EC_LIB);
474             goto err;
475         }
476     }
477 #endif
478     if (!BN_nnmod(u1, X, order, ctx)) {
479         ECerr(EC_F_OSSL_ECDSA_VERIFY_SIG, ERR_R_BN_LIB);
480         goto err;
481     }
482     /*  if the signature is correct u1 is equal to sig->r */
483     ret = (BN_ucmp(u1, sig->r) == 0);
484  err:
485     BN_CTX_end(ctx);
486     BN_CTX_free(ctx);
487     EC_POINT_free(point);
488     return ret;
489 }