]> www.wagner.pp.ru Git - openssl-gost/engine.git/blob - gost_ec_sign.c
Formatting fix
[openssl-gost/engine.git] / gost_ec_sign.c
1 /**********************************************************************
2  *                        gost_ec_sign.c                              *
3  *             Copyright (c) 2005-2013 Cryptocom LTD                  *
4  *         This file is distributed under the same license as OpenSSL *
5  *                                                                    *
6  *          Implementation of GOST R 34.10-2001                       *
7  *          Requires OpenSSL 1.0.0+ for compilation                   *
8  **********************************************************************/
9 #include "gost_lcl.h"
10 #include <string.h>
11 #include <openssl/rand.h>
12 #include <openssl/ecdsa.h>
13 #include <openssl/err.h>
14 #include "e_gost_err.h"
15 #ifdef DEBUG_SIGN
16 extern
17 void dump_signature(const char *message, const unsigned char *buffer,
18                     size_t len);
19 void dump_dsa_sig(const char *message, DSA_SIG *sig);
20 #else
21
22 # define dump_signature(a,b,c)
23 # define dump_dsa_sig(a,b)
24 #endif
25
26 /* Convert little-endian byte array into bignum */
27 BIGNUM *hashsum2bn(const unsigned char *dgst, int len)
28 {
29     unsigned char buf[64];
30     int i;
31
32     if (len > sizeof(buf))
33         return NULL;
34
35     for (i = 0; i < len; i++) {
36         buf[len - i - 1] = dgst[i];
37     }
38     return getbnfrombuf(buf, len);
39 }
40
41 static R3410_ec_params *gost_nid2params(int nid)
42 {
43     R3410_ec_params *params;
44
45     /* Search nid in 2012 paramset */
46     params = R3410_2012_512_paramset;
47     while (params->nid != NID_undef) {
48         if (params->nid == nid)
49             return params;
50         params++;
51     }
52
53     /* Search nid in 2001 paramset */
54     params = R3410_2001_paramset;
55     while (params->nid != NID_undef) {
56         if (params->nid == nid)
57             return params;
58         params++;
59     }
60
61     return NULL;
62 }
63
64 /*
65  * Fills EC_KEY structure hidden in the app_data field of DSA structure
66  * with parameter information, extracted from parameter array in
67  * params.c file.
68  *
69  * Also fils DSA->q field with copy of EC_GROUP order field to make
70  * DSA_size function work
71  */
72 int fill_GOST_EC_params(EC_KEY *eckey, int nid)
73 {
74     R3410_ec_params *params = gost_nid2params(nid);
75     EC_GROUP *grp = NULL;
76     EC_POINT *P = NULL;
77     BIGNUM *p = NULL, *q = NULL, *a = NULL, *b = NULL, *x = NULL, *y = NULL;
78     BN_CTX *ctx;
79     int ok = 0;
80
81     if (!eckey || !params) {
82         GOSTerr(GOST_F_FILL_GOST_EC_PARAMS, GOST_R_UNSUPPORTED_PARAMETER_SET);
83         return 0;
84     }
85
86     if (!(ctx = BN_CTX_new())) {
87         GOSTerr(GOST_F_FILL_GOST_EC_PARAMS, ERR_R_MALLOC_FAILURE);
88         return 0;
89     }
90
91     BN_CTX_start(ctx);
92     p = BN_CTX_get(ctx);
93     a = BN_CTX_get(ctx);
94     b = BN_CTX_get(ctx);
95     x = BN_CTX_get(ctx);
96     y = BN_CTX_get(ctx);
97     q = BN_CTX_get(ctx);
98     if (!p || !a || !b || !x || !y || !q) {
99         GOSTerr(GOST_F_FILL_GOST_EC_PARAMS, ERR_R_MALLOC_FAILURE);
100         goto end;
101     }
102
103     if (!BN_hex2bn(&p, params->p)
104         || !BN_hex2bn(&a, params->a)
105         || !BN_hex2bn(&b, params->b)) {
106         GOSTerr(GOST_F_FILL_GOST_EC_PARAMS, ERR_R_INTERNAL_ERROR);
107         goto end;
108     }
109
110     grp = EC_GROUP_new_curve_GFp(p, a, b, ctx);
111     if (!grp) {
112         GOSTerr(GOST_F_FILL_GOST_EC_PARAMS, ERR_R_MALLOC_FAILURE);
113         goto end;
114     }
115
116     P = EC_POINT_new(grp);
117     if (!P) {
118         GOSTerr(GOST_F_FILL_GOST_EC_PARAMS, ERR_R_MALLOC_FAILURE);
119         goto end;
120     }
121
122     if (!BN_hex2bn(&x, params->x)
123         || !BN_hex2bn(&y, params->y)
124         || !EC_POINT_set_affine_coordinates_GFp(grp, P, x, y, ctx)
125         || !BN_hex2bn(&q, params->q)) {
126         GOSTerr(GOST_F_FILL_GOST_EC_PARAMS, ERR_R_INTERNAL_ERROR);
127         goto end;
128     }
129
130     if (!EC_GROUP_set_generator(grp, P, q, NULL)) {
131         GOSTerr(GOST_F_FILL_GOST_EC_PARAMS, ERR_R_INTERNAL_ERROR);
132         goto end;
133     }
134     EC_GROUP_set_curve_name(grp, params->nid);
135     if (!EC_KEY_set_group(eckey, grp)) {
136         GOSTerr(GOST_F_FILL_GOST_EC_PARAMS, ERR_R_INTERNAL_ERROR);
137         goto end;
138     }
139     ok = 1;
140  end:
141     if (P)
142         EC_POINT_free(P);
143     if (grp)
144         EC_GROUP_free(grp);
145     BN_CTX_end(ctx);
146     BN_CTX_free(ctx);
147     return ok;
148 }
149
150 /*
151  * Computes gost_ec signature as DSA_SIG structure
152  *
153  */
154 DSA_SIG *gost_ec_sign(const unsigned char *dgst, int dlen, EC_KEY *eckey)
155 {
156     DSA_SIG *newsig = NULL, *ret = NULL;
157     BIGNUM *md = NULL;
158     BIGNUM *order = NULL;
159     const EC_GROUP *group;
160     const BIGNUM *priv_key;
161     BIGNUM *r = NULL, *s = NULL, *X = NULL, *tmp = NULL, *tmp2 = NULL,
162         *k = NULL, *e = NULL;
163     EC_POINT *C = NULL;
164     BN_CTX *ctx;
165
166     OPENSSL_assert(dgst != NULL && eckey != NULL);
167
168     if (!(ctx = BN_CTX_new())) {
169         GOSTerr(GOST_F_GOST_EC_SIGN, ERR_R_MALLOC_FAILURE);
170         return NULL;
171     }
172
173     BN_CTX_start(ctx);
174     OPENSSL_assert(dlen == 32 || dlen == 64);
175     md = hashsum2bn(dgst, dlen);
176     newsig = DSA_SIG_new();
177     if (!newsig || !md) {
178         GOSTerr(GOST_F_GOST_EC_SIGN, ERR_R_MALLOC_FAILURE);
179         goto err;
180     }
181     group = EC_KEY_get0_group(eckey);
182     if (!group) {
183         GOSTerr(GOST_F_GOST_EC_SIGN, ERR_R_INTERNAL_ERROR);
184         goto err;
185     }
186     order = BN_CTX_get(ctx);
187     if (!order || !EC_GROUP_get_order(group, order, ctx)) {
188         GOSTerr(GOST_F_GOST_EC_SIGN, ERR_R_INTERNAL_ERROR);
189         goto err;
190     }
191     priv_key = EC_KEY_get0_private_key(eckey);
192     if (!priv_key) {
193         GOSTerr(GOST_F_GOST_EC_SIGN, ERR_R_INTERNAL_ERROR);
194         goto err;
195     }
196     e = BN_CTX_get(ctx);
197     if (!e || !BN_mod(e, md, order, ctx)) {
198         GOSTerr(GOST_F_GOST_EC_SIGN, ERR_R_INTERNAL_ERROR);
199         goto err;
200     }
201 #ifdef DEBUG_SIGN
202     fprintf(stderr, "digest as bignum=");
203     BN_print_fp(stderr, md);
204     fprintf(stderr, "\ndigest mod q=");
205     BN_print_fp(stderr, e);
206     fprintf(stderr, "\n");
207 #endif
208     if (BN_is_zero(e)) {
209         BN_one(e);
210     }
211     k = BN_CTX_get(ctx);
212     C = EC_POINT_new(group);
213     if (!k || !C) {
214         GOSTerr(GOST_F_GOST_EC_SIGN, ERR_R_MALLOC_FAILURE);
215         goto err;
216     }
217
218     do {
219         do {
220             if (!BN_rand_range(k, order)) {
221                 GOSTerr(GOST_F_GOST_EC_SIGN, GOST_R_RNG_ERROR);
222                 goto err;
223             }
224             /*
225              * To avoid timing information leaking the length of k,
226              * compute C*k using an equivalent scalar of fixed bit-length */
227             if (!BN_add(k, k, order)
228                 || (BN_num_bits(k) <= BN_num_bits(order)
229                     && !BN_add(k, k, order))) {
230                 goto err;
231             }
232             if (!EC_POINT_mul(group, C, k, NULL, NULL, ctx)) {
233                 GOSTerr(GOST_F_GOST_EC_SIGN, ERR_R_EC_LIB);
234                 goto err;
235             }
236             if (!X)
237                 X = BN_CTX_get(ctx);
238             if (!r)
239                 r = BN_CTX_get(ctx);
240             if (!X || !r) {
241                 GOSTerr(GOST_F_GOST_EC_SIGN, ERR_R_MALLOC_FAILURE);
242                 goto err;
243             }
244             if (!EC_POINT_get_affine_coordinates_GFp(group, C, X, NULL, ctx)) {
245                 GOSTerr(GOST_F_GOST_EC_SIGN, ERR_R_EC_LIB);
246                 goto err;
247             }
248
249             if (!BN_nnmod(r, X, order, ctx)) {
250                 GOSTerr(GOST_F_GOST_EC_SIGN, ERR_R_INTERNAL_ERROR);
251                 goto err;
252             }
253         }
254         while (BN_is_zero(r));
255         /* s =  (r*priv_key+k*e) mod order */
256         if (!tmp)
257             tmp = BN_CTX_get(ctx);
258         if (!tmp2)
259             tmp2 = BN_CTX_get(ctx);
260         if (!s)
261             s = BN_CTX_get(ctx);
262         if (!tmp || !tmp2 || !s) {
263             GOSTerr(GOST_F_GOST_EC_SIGN, ERR_R_MALLOC_FAILURE);
264             goto err;
265         }
266
267         if (!BN_mod_mul(tmp, priv_key, r, order, ctx)
268             || !BN_mod_mul(tmp2, k, e, order, ctx)
269             || !BN_mod_add(s, tmp, tmp2, order, ctx)) {
270             GOSTerr(GOST_F_GOST_EC_SIGN, ERR_R_INTERNAL_ERROR);
271             goto err;
272         }
273     }
274     while (BN_is_zero(s));
275
276     newsig->s = BN_dup(s);
277     newsig->r = BN_dup(r);
278     if (!newsig->s || !newsig->r) {
279         GOSTerr(GOST_F_GOST_EC_SIGN, ERR_R_MALLOC_FAILURE);
280         goto err;
281     }
282
283     ret = newsig;
284  err:
285     BN_CTX_end(ctx);
286     BN_CTX_free(ctx);
287     if (C)
288         EC_POINT_free(C);
289     if (md)
290         BN_free(md);
291     if (!ret && newsig) {
292         DSA_SIG_free(newsig);
293     }
294     return ret;
295 }
296
297 /*
298  * Verifies gost ec signature
299  *
300  */
301 int gost_ec_verify(const unsigned char *dgst, int dgst_len,
302                    DSA_SIG *sig, EC_KEY *ec)
303 {
304     BN_CTX *ctx;
305     const EC_GROUP *group = (ec) ? EC_KEY_get0_group(ec) : NULL;
306     BIGNUM *order;
307     BIGNUM *md = NULL, *e = NULL, *R = NULL, *v = NULL,
308         *z1 = NULL, *z2 = NULL;
309     BIGNUM *X = NULL, *tmp = NULL;
310     EC_POINT *C = NULL;
311     const EC_POINT *pub_key = NULL;
312     int ok = 0;
313
314     OPENSSL_assert(dgst != NULL && sig != NULL && group != NULL);
315
316     if (!(ctx = BN_CTX_new())) {
317         GOSTerr(GOST_F_GOST_EC_VERIFY, ERR_R_MALLOC_FAILURE);
318         return 0;
319     }
320
321     BN_CTX_start(ctx);
322     order = BN_CTX_get(ctx);
323     e = BN_CTX_get(ctx);
324     z1 = BN_CTX_get(ctx);
325     z2 = BN_CTX_get(ctx);
326     tmp = BN_CTX_get(ctx);
327     X = BN_CTX_get(ctx);
328     R = BN_CTX_get(ctx);
329     v = BN_CTX_get(ctx);
330     if (!order || !e || !z1 || !z2 || !tmp || !X || !R || !v) {
331         GOSTerr(GOST_F_GOST_EC_VERIFY, ERR_R_MALLOC_FAILURE);
332         goto err;
333     }
334
335     pub_key = EC_KEY_get0_public_key(ec);
336     if (!pub_key || !EC_GROUP_get_order(group, order, ctx)) {
337         GOSTerr(GOST_F_GOST_EC_VERIFY, ERR_R_INTERNAL_ERROR);
338         goto err;
339     }
340
341     if (BN_is_zero(sig->s) || BN_is_zero(sig->r) ||
342         (BN_cmp(sig->s, order) >= 1) || (BN_cmp(sig->r, order) >= 1)) {
343         GOSTerr(GOST_F_GOST_EC_VERIFY, GOST_R_SIGNATURE_PARTS_GREATER_THAN_Q);
344         goto err;
345
346     }
347
348     OPENSSL_assert(dgst_len == 32 || dgst_len == 64);
349     md = hashsum2bn(dgst, dgst_len);
350     if (!md || !BN_mod(e, md, order, ctx)) {
351         GOSTerr(GOST_F_GOST_EC_VERIFY, ERR_R_INTERNAL_ERROR);
352         goto err;
353     }
354 #ifdef DEBUG_SIGN
355     fprintf(stderr, "digest as bignum: ");
356     BN_print_fp(stderr, md);
357     fprintf(stderr, "\ndigest mod q: ");
358     BN_print_fp(stderr, e);
359 #endif
360     if (BN_is_zero(e) && !BN_one(e)) {
361         GOSTerr(GOST_F_GOST_EC_VERIFY, ERR_R_INTERNAL_ERROR);
362         goto err;
363     }
364     v = BN_mod_inverse(v, e, order, ctx);
365     if (!v || !BN_mod_mul(z1, sig->s, v, order, ctx)
366         || !BN_sub(tmp, order, sig->r)
367         || !BN_mod_mul(z2, tmp, v, order, ctx)) {
368         GOSTerr(GOST_F_GOST_EC_VERIFY, ERR_R_INTERNAL_ERROR);
369         goto err;
370     }
371 #ifdef DEBUG_SIGN
372     fprintf(stderr, "\nInverted digest value: ");
373     BN_print_fp(stderr, v);
374     fprintf(stderr, "\nz1: ");
375     BN_print_fp(stderr, z1);
376     fprintf(stderr, "\nz2: ");
377     BN_print_fp(stderr, z2);
378 #endif
379     C = EC_POINT_new(group);
380     if (!C) {
381         GOSTerr(GOST_F_GOST_EC_VERIFY, ERR_R_MALLOC_FAILURE);
382         goto err;
383     }
384     if (!EC_POINT_mul(group, C, z1, pub_key, z2, ctx)) {
385         GOSTerr(GOST_F_GOST_EC_VERIFY, ERR_R_EC_LIB);
386         goto err;
387     }
388     if (!EC_POINT_get_affine_coordinates_GFp(group, C, X, NULL, ctx)) {
389         GOSTerr(GOST_F_GOST_EC_VERIFY, ERR_R_EC_LIB);
390         goto err;
391     }
392     if (!BN_mod(R, X, order, ctx)) {
393         GOSTerr(GOST_F_GOST_EC_VERIFY, ERR_R_INTERNAL_ERROR);
394         goto err;
395     }
396 #ifdef DEBUG_SIGN
397     fprintf(stderr, "\nX=");
398     BN_print_fp(stderr, X);
399     fprintf(stderr, "\nX mod q=");
400     BN_print_fp(stderr, R);
401     fprintf(stderr, "\n");
402 #endif
403     if (BN_cmp(R, sig->r) != 0) {
404         GOSTerr(GOST_F_GOST_EC_VERIFY, GOST_R_SIGNATURE_MISMATCH);
405     } else {
406         ok = 1;
407     }
408  err:
409     if (C)
410         EC_POINT_free(C);
411     BN_CTX_end(ctx);
412     BN_CTX_free(ctx);
413     if (md)
414         BN_free(md);
415     return ok;
416 }
417
418 /*
419  * Computes GOST R 34.10-2001 public key
420  * or GOST R 34.10-2012 public key
421  *
422  */
423 int gost_ec_compute_public(EC_KEY *ec)
424 {
425     const EC_GROUP *group = (ec) ? EC_KEY_get0_group(ec) : NULL;
426     EC_POINT *pub_key = NULL;
427     const BIGNUM *priv_key = NULL;
428     BN_CTX *ctx = NULL;
429     int ok = 0;
430
431     if (!group) {
432         GOSTerr(GOST_F_GOST_EC_COMPUTE_PUBLIC, GOST_R_KEY_IS_NOT_INITIALIZED);
433         return 0;
434     }
435
436     ctx = BN_CTX_new();
437     if (!ctx) {
438         GOSTerr(GOST_F_GOST_EC_COMPUTE_PUBLIC, ERR_R_MALLOC_FAILURE);
439         return 0;
440     }
441
442     BN_CTX_start(ctx);
443     priv_key = EC_KEY_get0_private_key(ec);
444     if (!priv_key) {
445         GOSTerr(GOST_F_GOST_EC_COMPUTE_PUBLIC, ERR_R_EC_LIB);
446         goto err;
447     }
448
449     pub_key = EC_POINT_new(group);
450     if (!pub_key) {
451         GOSTerr(GOST_F_GOST_EC_COMPUTE_PUBLIC, ERR_R_MALLOC_FAILURE);
452         goto err;
453     }
454
455     if (!EC_POINT_mul(group, pub_key, priv_key, NULL, NULL, ctx)) {
456         GOSTerr(GOST_F_GOST_EC_COMPUTE_PUBLIC, ERR_R_EC_LIB);
457         goto err;
458     }
459     if (!EC_KEY_set_public_key(ec, pub_key)) {
460         GOSTerr(GOST_F_GOST_EC_COMPUTE_PUBLIC, ERR_R_EC_LIB);
461         goto err;
462     }
463     ok = 1;
464  err:
465     if (pub_key)
466         EC_POINT_free(pub_key);
467     BN_CTX_end(ctx);
468     BN_CTX_free(ctx);
469     return ok;
470 }
471
472 /*
473  *
474  * Generates GOST R 34.10-2001
475  * or GOST R 34.10-2012 keypair
476  *
477  */
478 int gost_ec_keygen(EC_KEY *ec)
479 {
480     BIGNUM *order = NULL, *d = NULL;
481     const EC_GROUP *group = (ec) ? EC_KEY_get0_group(ec) : NULL;
482     int ok = 0;
483
484     if (!group) {
485         GOSTerr(GOST_F_GOST_EC_KEYGEN, ERR_R_INTERNAL_ERROR);
486         return 0;
487     }
488
489     order = BN_new();
490     d = BN_new();
491     if (!order || !d) {
492         GOSTerr(GOST_F_GOST_EC_KEYGEN, ERR_R_MALLOC_FAILURE);
493         goto end;
494     }
495
496     if (!EC_GROUP_get_order(group, order, NULL)) {
497         GOSTerr(GOST_F_GOST_EC_KEYGEN, ERR_R_INTERNAL_ERROR);
498         goto end;
499     }
500
501     do {
502         if (!BN_rand_range(d, order)) {
503             GOSTerr(GOST_F_GOST_EC_KEYGEN, GOST_R_RNG_ERROR);
504             goto end;
505         }
506     }
507     while (BN_is_zero(d));
508
509     if (!EC_KEY_set_private_key(ec, d)) {
510         GOSTerr(GOST_F_GOST_EC_KEYGEN, ERR_R_INTERNAL_ERROR);
511         goto end;
512     }
513
514     ok = 1;
515  end:
516     if (d)
517         BN_free(d);
518     if (order)
519         BN_free(order);
520
521     return (ok) ? gost_ec_compute_public(ec) : 0;
522 }