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