]> www.wagner.pp.ru Git - openssl-gost/engine.git/blob - gost_pmeth.c
openssl 1.1.0 compatibility
[openssl-gost/engine.git] / gost_pmeth.c
1 /**********************************************************************
2  *                          gost_pmeth.c                              *
3  *             Copyright (c) 2005-2013 Cryptocom LTD                  *
4  *         This file is distributed under the same license as OpenSSL *
5  *                                                                    *
6  *   Implementation of RFC 4357 (GOST R 34.10) Publick key method     *
7  *       for OpenSSL                                                  *
8  *          Requires OpenSSL 1.0.0+ for compilation                   *
9  **********************************************************************/
10 #include <openssl/evp.h>
11 #include <openssl/objects.h>
12 #include <openssl/ec.h>
13 #include <openssl/err.h>
14 #include <openssl/x509v3.h>     /* For string_to_hex */
15 #include <stdlib.h>
16 #include <string.h>
17 #include <ctype.h>
18 #include "gost_lcl.h"
19 #include "e_gost_err.h"
20
21 /* -----init, cleanup, copy - uniform for all algs  --------------*/
22 /* Allocates new gost_pmeth_data structure and assigns it as data */
23 static int pkey_gost_init(EVP_PKEY_CTX *ctx)
24 {
25     struct gost_pmeth_data *data;
26     EVP_PKEY *pkey = EVP_PKEY_CTX_get0_pkey(ctx);
27
28     data = OPENSSL_malloc(sizeof(*data));
29     if (!data)
30         return 0;
31     memset(data, 0, sizeof(*data));
32     if (pkey && EVP_PKEY_get0(pkey)) {
33         switch (EVP_PKEY_base_id(pkey)) {
34         case NID_id_GostR3410_2001:
35         case NID_id_GostR3410_2012_256:
36         case NID_id_GostR3410_2012_512:
37             {
38                 const EC_GROUP *group =
39                     EC_KEY_get0_group(EVP_PKEY_get0((EVP_PKEY *)pkey));
40                 if (group != NULL) {
41                     data->sign_param_nid = EC_GROUP_get_curve_name(group);
42                     break;
43                 }
44                 /* else */
45             }
46         default:
47             OPENSSL_free(data);
48             return 0;
49         }
50     }
51     EVP_PKEY_CTX_set_data(ctx, data);
52     return 1;
53 }
54
55 /* Copies contents of gost_pmeth_data structure */
56 static int pkey_gost_copy(EVP_PKEY_CTX *dst, EVP_PKEY_CTX *src)
57 {
58     struct gost_pmeth_data *dst_data, *src_data;
59     if (!pkey_gost_init(dst)) {
60         return 0;
61     }
62     src_data = EVP_PKEY_CTX_get_data(src);
63     dst_data = EVP_PKEY_CTX_get_data(dst);
64     if (!src_data || !dst_data)
65         return 0;
66
67     *dst_data = *src_data;
68     if (src_data->shared_ukm) {
69         dst_data->shared_ukm = NULL;
70     }
71     return 1;
72 }
73
74 /* Frees up gost_pmeth_data structure */
75 static void pkey_gost_cleanup(EVP_PKEY_CTX *ctx)
76 {
77     struct gost_pmeth_data *data = EVP_PKEY_CTX_get_data(ctx);
78     if (!data)
79         return;
80     OPENSSL_free(data->shared_ukm);
81     OPENSSL_free(data);
82 }
83
84 /* --------------------- control functions  ------------------------------*/
85 static int pkey_gost_ctrl(EVP_PKEY_CTX *ctx, int type, int p1, void *p2)
86 {
87     struct gost_pmeth_data *pctx =
88         (struct gost_pmeth_data *)EVP_PKEY_CTX_get_data(ctx);
89     if (pctx == NULL)
90         return 0;
91
92     switch (type) {
93     case EVP_PKEY_CTRL_MD:
94         {
95             EVP_PKEY *key = EVP_PKEY_CTX_get0_pkey(ctx);
96             int pkey_nid = (key == NULL) ? NID_undef : EVP_PKEY_base_id(key);
97
98             OPENSSL_assert(p2 != NULL);
99
100             switch (EVP_MD_type((const EVP_MD *)p2)) {
101             case NID_id_GostR3411_94:
102                 if (pkey_nid == NID_id_GostR3410_2001
103                     || pkey_nid == NID_id_GostR3410_94) {
104                     pctx->md = (EVP_MD *)p2;
105                     return 1;
106                 }
107                 break;
108
109             case NID_id_GostR3411_2012_256:
110                 if (pkey_nid == NID_id_GostR3410_2012_256) {
111                     pctx->md = (EVP_MD *)p2;
112                     return 1;
113                 }
114                 break;
115
116             case NID_id_GostR3411_2012_512:
117                 if (pkey_nid == NID_id_GostR3410_2012_512) {
118                     pctx->md = (EVP_MD *)p2;
119                     return 1;
120                 }
121                 break;
122             }
123
124             GOSTerr(GOST_F_PKEY_GOST_CTRL, GOST_R_INVALID_DIGEST_TYPE);
125             return 0;
126         }
127
128     case EVP_PKEY_CTRL_GET_MD:
129         *(const EVP_MD **)p2 = pctx->md;
130         return 1;
131
132     case EVP_PKEY_CTRL_PKCS7_ENCRYPT:
133     case EVP_PKEY_CTRL_PKCS7_DECRYPT:
134     case EVP_PKEY_CTRL_PKCS7_SIGN:
135     case EVP_PKEY_CTRL_DIGESTINIT:
136 #ifndef OPENSSL_NO_CMS
137     case EVP_PKEY_CTRL_CMS_ENCRYPT:
138     case EVP_PKEY_CTRL_CMS_DECRYPT:
139     case EVP_PKEY_CTRL_CMS_SIGN:
140 #endif
141         return 1;
142
143     case EVP_PKEY_CTRL_GOST_PARAMSET:
144         pctx->sign_param_nid = (int)p1;
145         return 1;
146     case EVP_PKEY_CTRL_SET_IV:
147         OPENSSL_assert(p2 != NULL);
148         pctx->shared_ukm = OPENSSL_malloc((int)p1);
149         if (pctx->shared_ukm == NULL) {
150             GOSTerr(GOST_F_PKEY_GOST_CTRL, ERR_R_MALLOC_FAILURE);
151             return 0;
152         }
153         memcpy(pctx->shared_ukm, p2, (int)p1);
154         return 1;
155     case EVP_PKEY_CTRL_PEER_KEY:
156         if (p1 == 0 || p1 == 1) /* call from EVP_PKEY_derive_set_peer */
157             return 1;
158         if (p1 == 2)            /* TLS: peer key used? */
159             return pctx->peer_key_used;
160         if (p1 == 3)            /* TLS: peer key used! */
161             return (pctx->peer_key_used = 1);
162         break;
163     }
164
165     GOSTerr(GOST_F_PKEY_GOST_CTRL, GOST_R_CTRL_CALL_FAILED);
166     return -2;
167 }
168
169 static int pkey_gost_ec_ctrl_str_256(EVP_PKEY_CTX *ctx,
170                                      const char *type, const char *value)
171 {
172     int param_nid = 0;
173
174     if (strcmp(type, param_ctrl_string) == 0) {
175         if (!value) {
176             return 0;
177         }
178         if (strlen(value) == 1) {
179             switch (toupper((unsigned char)value[0])) {
180             case 'A':
181                 param_nid = NID_id_GostR3410_2001_CryptoPro_A_ParamSet;
182                 break;
183             case 'B':
184                 param_nid = NID_id_GostR3410_2001_CryptoPro_B_ParamSet;
185                 break;
186             case 'C':
187                 param_nid = NID_id_GostR3410_2001_CryptoPro_C_ParamSet;
188                 break;
189             case '0':
190                 param_nid = NID_id_GostR3410_2001_TestParamSet;
191                 break;
192             default:
193                 return 0;
194             }
195         } else if ((strlen(value) == 2)
196                    && (toupper((unsigned char)value[0]) == 'X')) {
197             switch (toupper((unsigned char)value[1])) {
198             case 'A':
199                 param_nid = NID_id_GostR3410_2001_CryptoPro_XchA_ParamSet;
200                 break;
201             case 'B':
202                 param_nid = NID_id_GostR3410_2001_CryptoPro_XchB_ParamSet;
203                 break;
204             default:
205                 return 0;
206             }
207         } else {
208             R3410_ec_params *p = R3410_2001_paramset;
209             param_nid = OBJ_txt2nid(value);
210             if (param_nid == NID_undef) {
211                 return 0;
212             }
213             for (; p->nid != NID_undef; p++) {
214                 if (p->nid == param_nid)
215                     break;
216             }
217             if (p->nid == NID_undef) {
218                 GOSTerr(GOST_F_PKEY_GOST_EC_CTRL_STR_256,
219                         GOST_R_INVALID_PARAMSET);
220                 return 0;
221             }
222         }
223
224         return pkey_gost_ctrl(ctx, EVP_PKEY_CTRL_GOST_PARAMSET,
225                               param_nid, NULL);
226     }
227     return -2;
228 }
229
230 static int pkey_gost_ec_ctrl_str_512(EVP_PKEY_CTX *ctx,
231                                      const char *type, const char *value)
232 {
233     int param_nid = NID_undef;
234
235     if (strcmp(type, param_ctrl_string))
236         return -2;
237
238     if (!value)
239         return 0;
240
241     if (strlen(value) == 1) {
242         switch (toupper((unsigned char)value[0])) {
243         case 'A':
244             param_nid = NID_id_tc26_gost_3410_2012_512_paramSetA;
245             break;
246
247         case 'B':
248             param_nid = NID_id_tc26_gost_3410_2012_512_paramSetB;
249             break;
250
251         default:
252             return 0;
253         }
254     } else {
255         R3410_ec_params *p = R3410_2012_512_paramset;
256         param_nid = OBJ_txt2nid(value);
257         if (param_nid == NID_undef)
258             return 0;
259
260         while (p->nid != NID_undef && p->nid != param_nid)
261             p++;
262
263         if (p->nid == NID_undef) {
264             GOSTerr(GOST_F_PKEY_GOST_EC_CTRL_STR_512,
265                     GOST_R_INVALID_PARAMSET);
266             return 0;
267         }
268     }
269
270     return pkey_gost_ctrl(ctx, EVP_PKEY_CTRL_GOST_PARAMSET, param_nid, NULL);
271 }
272
273 /* --------------------- key generation  --------------------------------*/
274
275 static int pkey_gost_paramgen_init(EVP_PKEY_CTX *ctx)
276 {
277     return 1;
278 }
279
280 static int pkey_gost2001_paramgen(EVP_PKEY_CTX *ctx, EVP_PKEY *pkey)
281 {
282     struct gost_pmeth_data *data = EVP_PKEY_CTX_get_data(ctx);
283     EC_KEY *ec = NULL;
284
285     if (!data || data->sign_param_nid == NID_undef) {
286         GOSTerr(GOST_F_PKEY_GOST01_PARAMGEN, GOST_R_NO_PARAMETERS_SET);
287         return 0;
288     }
289
290     ec = EC_KEY_new();
291     if (!fill_GOST_EC_params(ec, data->sign_param_nid)
292         || !EVP_PKEY_assign(pkey, NID_id_GostR3410_2001, ec)) {
293         EC_KEY_free(ec);
294         return 0;
295     }
296     return 1;
297 }
298
299 static int pkey_gost2012_paramgen(EVP_PKEY_CTX *ctx, EVP_PKEY *pkey)
300 {
301     struct gost_pmeth_data *data = EVP_PKEY_CTX_get_data(ctx);
302     EC_KEY *ec;
303     int result = 0;
304
305     if (!data || data->sign_param_nid == NID_undef) {
306         GOSTerr(GOST_F_PKEY_GOST12_PARAMGEN, GOST_R_NO_PARAMETERS_SET);
307         return 0;
308     }
309
310     ec = EC_KEY_new();
311     if (!fill_GOST_EC_params(ec, data->sign_param_nid)) {
312         EC_KEY_free(ec);
313         return 0;
314     }
315
316     switch (data->sign_param_nid) {
317     case NID_id_tc26_gost_3410_2012_512_paramSetA:
318     case NID_id_tc26_gost_3410_2012_512_paramSetB:
319         result =
320             (EVP_PKEY_assign(pkey, NID_id_GostR3410_2012_512, ec)) ? 1 : 0;
321         break;
322
323     case NID_id_GostR3410_2001_CryptoPro_A_ParamSet:
324     case NID_id_GostR3410_2001_CryptoPro_B_ParamSet:
325     case NID_id_GostR3410_2001_CryptoPro_C_ParamSet:
326     case NID_id_GostR3410_2001_CryptoPro_XchA_ParamSet:
327     case NID_id_GostR3410_2001_CryptoPro_XchB_ParamSet:
328     case NID_id_GostR3410_2001_TestParamSet:
329         result =
330             (EVP_PKEY_assign(pkey, NID_id_GostR3410_2012_256, ec)) ? 1 : 0;
331         break;
332     default:
333         result = 0;
334         break;
335     }
336
337     if (result == 0)
338         EC_KEY_free(ec);
339
340     return result;
341 }
342
343 /* ----------- keygen callbacks --------------------------------------*/
344 /* Generates GOST_R3410 2001 key and assigns it using specified type */
345 static int pkey_gost2001cp_keygen(EVP_PKEY_CTX *ctx, EVP_PKEY *pkey)
346 {
347     EC_KEY *ec;
348     if (!pkey_gost2001_paramgen(ctx, pkey))
349         return 0;
350     ec = EVP_PKEY_get0(pkey);
351     gost_ec_keygen(ec);
352     return 1;
353 }
354
355 /* Generates GOST_R3410 2012 key and assigns it using specified type */
356 static int pkey_gost2012cp_keygen(EVP_PKEY_CTX *ctx, EVP_PKEY *pkey)
357 {
358     if (!pkey_gost2012_paramgen(ctx, pkey))
359         return 0;
360
361     gost_ec_keygen(EVP_PKEY_get0(pkey));
362     return 1;
363 }
364
365 /* ----------- sign callbacks --------------------------------------*/
366 /*
367  * Packs signature according to Cryptopro rules
368  * and frees up DSA_SIG structure
369  */
370 int pack_sign_cp(DSA_SIG *s, int order, unsigned char *sig, size_t *siglen)
371 {
372     *siglen = 2 * order;
373     memset(sig, 0, *siglen);
374     store_bignum(s->s, sig, order);
375     store_bignum(s->r, sig + order, order);
376     DSA_SIG_free(s);
377     return 1;
378 }
379
380 static int pkey_gost_ec_cp_sign(EVP_PKEY_CTX *ctx, unsigned char *sig,
381                                 size_t *siglen, const unsigned char *tbs,
382                                 size_t tbs_len)
383 {
384     DSA_SIG *unpacked_sig = NULL;
385     EVP_PKEY *pkey = EVP_PKEY_CTX_get0_pkey(ctx);
386     int order = 0;
387
388     if (!siglen)
389         return 0;
390     if (!pkey)
391         return 0;
392
393     switch (EVP_PKEY_base_id(pkey)) {
394     case NID_id_GostR3410_2001:
395     case NID_id_GostR3410_2012_256:
396         order = 64;
397         break;
398     case NID_id_GostR3410_2012_512:
399         order = 128;
400         break;
401     default:
402         return 0;
403     }
404
405     if (!sig) {
406         *siglen = order;
407         return 1;
408     }
409     unpacked_sig = gost_ec_sign(tbs, tbs_len, EVP_PKEY_get0(pkey));
410     if (!unpacked_sig) {
411         return 0;
412     }
413     return pack_sign_cp(unpacked_sig, order / 2, sig, siglen);
414 }
415
416 /* ------------------- verify callbacks ---------------------------*/
417 /* Unpack signature according to cryptopro rules  */
418 DSA_SIG *unpack_cp_signature(const unsigned char *sig, size_t siglen)
419 {
420     DSA_SIG *s;
421
422     s = DSA_SIG_new();
423     if (s == NULL) {
424         GOSTerr(GOST_F_UNPACK_CP_SIGNATURE, ERR_R_MALLOC_FAILURE);
425         return NULL;
426     }
427     s->s = BN_bin2bn(sig, siglen / 2, NULL);
428     s->r = BN_bin2bn(sig + siglen / 2, siglen / 2, NULL);
429     return s;
430 }
431
432 static int pkey_gost_ec_cp_verify(EVP_PKEY_CTX *ctx, const unsigned char *sig,
433                                   size_t siglen, const unsigned char *tbs,
434                                   size_t tbs_len)
435 {
436     int ok = 0;
437     EVP_PKEY *pub_key = EVP_PKEY_CTX_get0_pkey(ctx);
438     DSA_SIG *s = (sig) ? unpack_cp_signature(sig, siglen) : NULL;
439     if (!s)
440         return 0;
441 #ifdef DEBUG_SIGN
442     fprintf(stderr, "R=");
443     BN_print_fp(stderr, s->r);
444     fprintf(stderr, "\nS=");
445     BN_print_fp(stderr, s->s);
446     fprintf(stderr, "\n");
447 #endif
448     if (pub_key)
449         ok = gost_ec_verify(tbs, tbs_len, s, EVP_PKEY_get0(pub_key));
450     DSA_SIG_free(s);
451     return ok;
452 }
453
454 /* ------------- encrypt init -------------------------------------*/
455 /* Generates ephermeral key */
456 static int pkey_gost_encrypt_init(EVP_PKEY_CTX *ctx)
457 {
458     return 1;
459 }
460
461 /* --------------- Derive init ------------------------------------*/
462 static int pkey_gost_derive_init(EVP_PKEY_CTX *ctx)
463 {
464     return 1;
465 }
466
467 /* -------- PKEY_METHOD for GOST MAC algorithm --------------------*/
468 static int pkey_gost_mac_init(EVP_PKEY_CTX *ctx)
469 {
470     struct gost_mac_pmeth_data *data = OPENSSL_malloc(sizeof(*data));
471     EVP_PKEY *pkey = EVP_PKEY_CTX_get0_pkey(ctx);
472
473     if (!data)
474         return 0;
475     memset(data, 0, sizeof(*data));
476     data->mac_size = 4;
477     data->mac_param_nid = NID_undef;
478
479     if (pkey) {
480         struct gost_mac_key *key = EVP_PKEY_get0(pkey);
481         if (key) {
482             data->mac_param_nid = key->mac_param_nid;
483                                                 data->mac_size      = key->mac_size;
484         }
485     }
486
487     EVP_PKEY_CTX_set_data(ctx, data);
488     return 1;
489 }
490
491 static void pkey_gost_mac_cleanup(EVP_PKEY_CTX *ctx)
492 {
493     struct gost_mac_pmeth_data *data = EVP_PKEY_CTX_get_data(ctx);
494     if (data)
495         OPENSSL_free(data);
496 }
497
498 static int pkey_gost_mac_copy(EVP_PKEY_CTX *dst, EVP_PKEY_CTX *src)
499 {
500     struct gost_mac_pmeth_data *dst_data, *src_data;
501     if (!pkey_gost_mac_init(dst)) {
502         return 0;
503     }
504     src_data = EVP_PKEY_CTX_get_data(src);
505     dst_data = EVP_PKEY_CTX_get_data(dst);
506     if (!src_data || !dst_data)
507         return 0;
508
509     *dst_data = *src_data;
510     return 1;
511 }
512
513 static int pkey_gost_mac_ctrl(EVP_PKEY_CTX *ctx, int type, int p1, void *p2)
514 {
515     struct gost_mac_pmeth_data *data =
516         (struct gost_mac_pmeth_data *)EVP_PKEY_CTX_get_data(ctx);
517
518     switch (type) {
519     case EVP_PKEY_CTRL_MD:
520         {
521             int nid = EVP_MD_type((const EVP_MD *)p2);
522             if (nid != NID_id_Gost28147_89_MAC && nid != NID_gost_mac_12) {
523                 GOSTerr(GOST_F_PKEY_GOST_MAC_CTRL,
524                         GOST_R_INVALID_DIGEST_TYPE);
525                 return 0;
526             }
527             data->md = (EVP_MD *)p2;
528             return 1;
529         }
530
531     case EVP_PKEY_CTRL_GET_MD:
532         *(const EVP_MD **)p2 = data->md;
533         return 1;
534
535     case EVP_PKEY_CTRL_PKCS7_ENCRYPT:
536     case EVP_PKEY_CTRL_PKCS7_DECRYPT:
537     case EVP_PKEY_CTRL_PKCS7_SIGN:
538         return 1;
539     case EVP_PKEY_CTRL_SET_MAC_KEY:
540         if (p1 != 32) {
541             GOSTerr(GOST_F_PKEY_GOST_MAC_CTRL, GOST_R_INVALID_MAC_KEY_LENGTH);
542             return 0;
543         }
544
545         memcpy(data->key, p2, 32);
546         data->key_set = 1;
547         return 1;
548     case EVP_PKEY_CTRL_GOST_PARAMSET:
549         {
550             struct gost_cipher_info *param = p2;
551             data->mac_param_nid = param->nid;
552             return 1;
553         }
554     case EVP_PKEY_CTRL_DIGESTINIT:
555         {
556             EVP_MD_CTX *mctx = p2;
557             struct gost_mac_key *key;
558             if (!data->key_set) {
559                 EVP_PKEY *pkey = EVP_PKEY_CTX_get0_pkey(ctx);
560                 if (!pkey) {
561                     GOSTerr(GOST_F_PKEY_GOST_MAC_CTRL,
562                             GOST_R_MAC_KEY_NOT_SET);
563                     return 0;
564                 }
565                 key = EVP_PKEY_get0(pkey);
566                 if (!key) {
567                     GOSTerr(GOST_F_PKEY_GOST_MAC_CTRL,
568                             GOST_R_MAC_KEY_NOT_SET);
569                     return 0;
570                 }
571             return EVP_MD_meth_get_ctrl(EVP_MD_CTX_md(mctx))
572                 (mctx, EVP_MD_CTRL_SET_KEY, 0, key);
573             } else {
574             return EVP_MD_meth_get_ctrl(EVP_MD_CTX_md(mctx))
575                 (mctx, EVP_MD_CTRL_SET_KEY, 32, &(data->key));
576             }
577         }
578     case EVP_PKEY_CTRL_MAC_LEN:
579         {
580             if (p1 < 1 || p1 > 8) {
581
582                 GOSTerr(GOST_F_PKEY_GOST_MAC_CTRL, GOST_R_INVALID_MAC_SIZE);
583                 return 0;
584             }
585             data->mac_size = p1;
586             return 1;
587         }
588     }
589     return -2;
590 }
591
592 static int pkey_gost_mac_ctrl_str(EVP_PKEY_CTX *ctx,
593                                   const char *type, const char *value)
594 {
595     if (strcmp(type, key_ctrl_string) == 0) {
596         if (strlen(value) != 32) {
597             GOSTerr(GOST_F_PKEY_GOST_MAC_CTRL_STR,
598                     GOST_R_INVALID_MAC_KEY_LENGTH);
599             return 0;
600         }
601         return pkey_gost_mac_ctrl(ctx, EVP_PKEY_CTRL_SET_MAC_KEY,
602                                   32, (char *)value);
603     }
604     if (strcmp(type, hexkey_ctrl_string) == 0) {
605         long keylen;
606         int ret;
607         unsigned char *keybuf = string_to_hex(value, &keylen);
608         if (!keybuf || keylen != 32) {
609             GOSTerr(GOST_F_PKEY_GOST_MAC_CTRL_STR,
610                     GOST_R_INVALID_MAC_KEY_LENGTH);
611             OPENSSL_free(keybuf);
612             return 0;
613         }
614         ret = pkey_gost_mac_ctrl(ctx, EVP_PKEY_CTRL_SET_MAC_KEY, 32, keybuf);
615         OPENSSL_free(keybuf);
616         return ret;
617
618     }
619     if (!strcmp(type, maclen_ctrl_string)) {
620         char *endptr;
621         long size = strtol(value, &endptr, 10);
622         if (*endptr != '\0') {
623             GOSTerr(GOST_F_PKEY_GOST_MAC_CTRL_STR, GOST_R_INVALID_MAC_SIZE);
624             return 0;
625         }
626         return pkey_gost_mac_ctrl(ctx, EVP_PKEY_CTRL_MAC_LEN, size, NULL);
627     }
628     if (strcmp(type, param_ctrl_string) == 0) {
629         ASN1_OBJECT *obj = OBJ_txt2obj(value, 0);
630         const struct gost_cipher_info *param = NULL;
631         if (obj == NULL) {
632             GOSTerr(GOST_F_PKEY_GOST_MAC_CTRL_STR, GOST_R_INVALID_MAC_PARAMS);
633             return 0;
634         }
635
636         param = get_encryption_params(obj);
637         if (param == NULL) {
638             GOSTerr(GOST_F_PKEY_GOST_MAC_CTRL_STR, GOST_R_INVALID_MAC_PARAMS);
639             return 0;
640         }
641
642         return pkey_gost_mac_ctrl(ctx, EVP_PKEY_CTRL_GOST_PARAMSET, 0,
643                                   (void *)param);
644     }
645     return -2;
646 }
647
648 static int pkey_gost_mac_keygen_base(EVP_PKEY_CTX *ctx,
649                                      EVP_PKEY *pkey, int mac_nid)
650 {
651     struct gost_mac_pmeth_data *data = EVP_PKEY_CTX_get_data(ctx);
652     struct gost_mac_key *keydata;
653     if (!data || !data->key_set) {
654         GOSTerr(GOST_F_PKEY_GOST_MAC_KEYGEN, GOST_R_MAC_KEY_NOT_SET);
655         return 0;
656     }
657     keydata = OPENSSL_malloc(sizeof(struct gost_mac_key));
658     if (keydata == NULL)
659         return 0;
660     memcpy(keydata->key, data->key, 32);
661     keydata->mac_param_nid = data->mac_param_nid;
662                 keydata->mac_size      = data->mac_size;
663     EVP_PKEY_assign(pkey, mac_nid, keydata);
664     return 1;
665 }
666
667 static int pkey_gost_mac_keygen_12(EVP_PKEY_CTX *ctx, EVP_PKEY *pkey)
668 {
669     return pkey_gost_mac_keygen_base(ctx, pkey, NID_gost_mac_12);
670 }
671
672 static int pkey_gost_mac_keygen(EVP_PKEY_CTX *ctx, EVP_PKEY *pkey)
673 {
674     return pkey_gost_mac_keygen_base(ctx, pkey, NID_id_Gost28147_89_MAC);
675 }
676
677 static int pkey_gost_mac_signctx_init(EVP_PKEY_CTX *ctx, EVP_MD_CTX *mctx)
678 {
679     struct gost_mac_pmeth_data *data = EVP_PKEY_CTX_get_data(ctx);
680
681                 if (data == NULL) {
682                         pkey_gost_mac_init(ctx);
683                 }
684
685     data = EVP_PKEY_CTX_get_data(ctx);
686     if (!data) {
687         GOSTerr(GOST_F_PKEY_GOST_MAC_SIGNCTX_INIT, GOST_R_MAC_KEY_NOT_SET);
688         return 0;
689     }
690
691     return 1;
692 }
693
694 static int pkey_gost_mac_signctx(EVP_PKEY_CTX *ctx, unsigned char *sig,
695                                  size_t *siglen, EVP_MD_CTX *mctx)
696 {
697     unsigned int tmpsiglen;
698     int ret;
699     struct gost_mac_pmeth_data *data = EVP_PKEY_CTX_get_data(ctx);
700
701     if (!siglen)
702         return 0;
703     tmpsiglen = *siglen;        /* for platforms where sizeof(int) !=
704                                  * sizeof(size_t) */
705
706     if (!sig) {
707         *siglen = data->mac_size;
708         return 1;
709     }
710
711     EVP_MD_meth_get_ctrl(EVP_MD_CTX_md(mctx))
712         (mctx, EVP_MD_CTRL_MAC_LEN, data->mac_size, NULL);
713     ret = EVP_DigestFinal_ex(mctx, sig, &tmpsiglen);
714     *siglen = data->mac_size;
715     return ret;
716 }
717
718 /* ----------------------------------------------------------------*/
719 int register_pmeth_gost(int id, EVP_PKEY_METHOD **pmeth, int flags)
720 {
721     *pmeth = EVP_PKEY_meth_new(id, flags);
722     if (!*pmeth)
723         return 0;
724
725     switch (id) {
726     case NID_id_GostR3410_2001:
727         EVP_PKEY_meth_set_ctrl(*pmeth,
728                                pkey_gost_ctrl, pkey_gost_ec_ctrl_str_256);
729         EVP_PKEY_meth_set_sign(*pmeth, NULL, pkey_gost_ec_cp_sign);
730         EVP_PKEY_meth_set_verify(*pmeth, NULL, pkey_gost_ec_cp_verify);
731
732         EVP_PKEY_meth_set_keygen(*pmeth, NULL, pkey_gost2001cp_keygen);
733
734         EVP_PKEY_meth_set_encrypt(*pmeth,
735                                   pkey_gost_encrypt_init,
736                                   pkey_GOST_ECcp_encrypt);
737         EVP_PKEY_meth_set_decrypt(*pmeth, NULL, pkey_GOST_ECcp_decrypt);
738         EVP_PKEY_meth_set_derive(*pmeth,
739                                  pkey_gost_derive_init, pkey_gost_ec_derive);
740         EVP_PKEY_meth_set_paramgen(*pmeth, pkey_gost_paramgen_init,
741                                    pkey_gost2001_paramgen);
742         break;
743     case NID_id_GostR3410_2012_256:
744         EVP_PKEY_meth_set_ctrl(*pmeth,
745                                pkey_gost_ctrl, pkey_gost_ec_ctrl_str_256);
746         EVP_PKEY_meth_set_sign(*pmeth, NULL, pkey_gost_ec_cp_sign);
747         EVP_PKEY_meth_set_verify(*pmeth, NULL, pkey_gost_ec_cp_verify);
748
749         EVP_PKEY_meth_set_keygen(*pmeth, NULL, pkey_gost2012cp_keygen);
750
751         EVP_PKEY_meth_set_encrypt(*pmeth,
752                                   pkey_gost_encrypt_init,
753                                   pkey_GOST_ECcp_encrypt);
754         EVP_PKEY_meth_set_decrypt(*pmeth, NULL, pkey_GOST_ECcp_decrypt);
755         EVP_PKEY_meth_set_derive(*pmeth,
756                                  pkey_gost_derive_init, pkey_gost_ec_derive);
757         EVP_PKEY_meth_set_paramgen(*pmeth,
758                                    pkey_gost_paramgen_init,
759                                    pkey_gost2012_paramgen);
760         break;
761     case NID_id_GostR3410_2012_512:
762         EVP_PKEY_meth_set_ctrl(*pmeth,
763                                pkey_gost_ctrl, pkey_gost_ec_ctrl_str_512);
764         EVP_PKEY_meth_set_sign(*pmeth, NULL, pkey_gost_ec_cp_sign);
765         EVP_PKEY_meth_set_verify(*pmeth, NULL, pkey_gost_ec_cp_verify);
766
767         EVP_PKEY_meth_set_keygen(*pmeth, NULL, pkey_gost2012cp_keygen);
768
769         EVP_PKEY_meth_set_encrypt(*pmeth,
770                                   pkey_gost_encrypt_init,
771                                   pkey_GOST_ECcp_encrypt);
772         EVP_PKEY_meth_set_decrypt(*pmeth, NULL, pkey_GOST_ECcp_decrypt);
773         EVP_PKEY_meth_set_derive(*pmeth,
774                                  pkey_gost_derive_init, pkey_gost_ec_derive);
775         EVP_PKEY_meth_set_paramgen(*pmeth,
776                                    pkey_gost_paramgen_init,
777                                    pkey_gost2012_paramgen);
778         break;
779     case NID_id_Gost28147_89_MAC:
780         EVP_PKEY_meth_set_ctrl(*pmeth, pkey_gost_mac_ctrl,
781                                pkey_gost_mac_ctrl_str);
782         EVP_PKEY_meth_set_signctx(*pmeth, pkey_gost_mac_signctx_init,
783                                   pkey_gost_mac_signctx);
784         EVP_PKEY_meth_set_keygen(*pmeth, NULL, pkey_gost_mac_keygen);
785         EVP_PKEY_meth_set_init(*pmeth, pkey_gost_mac_init);
786         EVP_PKEY_meth_set_cleanup(*pmeth, pkey_gost_mac_cleanup);
787         EVP_PKEY_meth_set_copy(*pmeth, pkey_gost_mac_copy);
788         return 1;
789     case NID_gost_mac_12:
790         EVP_PKEY_meth_set_ctrl(*pmeth, pkey_gost_mac_ctrl,
791                                pkey_gost_mac_ctrl_str);
792         EVP_PKEY_meth_set_signctx(*pmeth, pkey_gost_mac_signctx_init,
793                                   pkey_gost_mac_signctx);
794         EVP_PKEY_meth_set_keygen(*pmeth, NULL, pkey_gost_mac_keygen_12);
795         EVP_PKEY_meth_set_init(*pmeth, pkey_gost_mac_init);
796         EVP_PKEY_meth_set_cleanup(*pmeth, pkey_gost_mac_cleanup);
797         EVP_PKEY_meth_set_copy(*pmeth, pkey_gost_mac_copy);
798         return 1;
799     default:                   /* Unsupported method */
800         return 0;
801     }
802     EVP_PKEY_meth_set_init(*pmeth, pkey_gost_init);
803     EVP_PKEY_meth_set_cleanup(*pmeth, pkey_gost_cleanup);
804
805     EVP_PKEY_meth_set_copy(*pmeth, pkey_gost_copy);
806     /*
807      * FIXME derive etc...
808      */
809
810     return 1;
811 }