]> www.wagner.pp.ru Git - openssl-gost/engine.git/blob - gost_pmeth.c
Merge branch 'no_gost94_sig' into gost12_algs
[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)
150             return 0;
151         memcpy(pctx->shared_ukm, p2, (int)p1);
152         return 1;
153     case EVP_PKEY_CTRL_PEER_KEY:
154         if (p1 == 0 || p1 == 1) /* call from EVP_PKEY_derive_set_peer */
155             return 1;
156         if (p1 == 2)            /* TLS: peer key used? */
157             return pctx->peer_key_used;
158         if (p1 == 3)            /* TLS: peer key used! */
159             return (pctx->peer_key_used = 1);
160         break;
161     }
162
163     GOSTerr(GOST_F_PKEY_GOST_CTRL, GOST_R_CTRL_CALL_FAILED);
164     return -2;
165 }
166
167 static int pkey_gost_ec_ctrl_str_256(EVP_PKEY_CTX *ctx,
168                                      const char *type, const char *value)
169 {
170     int param_nid = 0;
171
172     if (strcmp(type, param_ctrl_string) == 0) {
173         if (!value) {
174             return 0;
175         }
176         if (strlen(value) == 1) {
177             switch (toupper((unsigned char)value[0])) {
178             case 'A':
179                 param_nid = NID_id_GostR3410_2001_CryptoPro_A_ParamSet;
180                 break;
181             case 'B':
182                 param_nid = NID_id_GostR3410_2001_CryptoPro_B_ParamSet;
183                 break;
184             case 'C':
185                 param_nid = NID_id_GostR3410_2001_CryptoPro_C_ParamSet;
186                 break;
187             case '0':
188                 param_nid = NID_id_GostR3410_2001_TestParamSet;
189                 break;
190             default:
191                 return 0;
192             }
193         } else if ((strlen(value) == 2)
194                    && (toupper((unsigned char)value[0]) == 'X')) {
195             switch (toupper((unsigned char)value[1])) {
196             case 'A':
197                 param_nid = NID_id_GostR3410_2001_CryptoPro_XchA_ParamSet;
198                 break;
199             case 'B':
200                 param_nid = NID_id_GostR3410_2001_CryptoPro_XchB_ParamSet;
201                 break;
202             default:
203                 return 0;
204             }
205         } else {
206             R3410_ec_params *p = R3410_2001_paramset;
207             param_nid = OBJ_txt2nid(value);
208             if (param_nid == NID_undef) {
209                 return 0;
210             }
211             for (; p->nid != NID_undef; p++) {
212                 if (p->nid == param_nid)
213                     break;
214             }
215             if (p->nid == NID_undef) {
216                 GOSTerr(GOST_F_PKEY_GOST_EC_CTRL_STR_256,
217                         GOST_R_INVALID_PARAMSET);
218                 return 0;
219             }
220         }
221
222         return pkey_gost_ctrl(ctx, EVP_PKEY_CTRL_GOST_PARAMSET,
223                               param_nid, NULL);
224     }
225     return -2;
226 }
227
228 static int pkey_gost_ec_ctrl_str_512(EVP_PKEY_CTX *ctx,
229                                      const char *type, const char *value)
230 {
231     int param_nid = NID_undef;
232
233     if (strcmp(type, param_ctrl_string))
234         return -2;
235
236     if (!value)
237         return 0;
238
239     if (strlen(value) == 1) {
240         switch (toupper((unsigned char)value[0])) {
241         case 'A':
242             param_nid = NID_id_tc26_gost_3410_2012_512_paramSetA;
243             break;
244
245         case 'B':
246             param_nid = NID_id_tc26_gost_3410_2012_512_paramSetB;
247             break;
248
249         default:
250             return 0;
251         }
252     } else {
253         R3410_ec_params *p = R3410_2012_512_paramset;
254         param_nid = OBJ_txt2nid(value);
255         if (param_nid == NID_undef)
256             return 0;
257
258         while (p->nid != NID_undef && p->nid != param_nid)
259             p++;
260
261         if (p->nid == NID_undef) {
262             GOSTerr(GOST_F_PKEY_GOST_EC_CTRL_STR_512,
263                     GOST_R_INVALID_PARAMSET);
264             return 0;
265         }
266     }
267
268     return pkey_gost_ctrl(ctx, EVP_PKEY_CTRL_GOST_PARAMSET, param_nid, NULL);
269 }
270
271 /* --------------------- key generation  --------------------------------*/
272
273 static int pkey_gost_paramgen_init(EVP_PKEY_CTX *ctx)
274 {
275     return 1;
276 }
277
278 static int pkey_gost2001_paramgen(EVP_PKEY_CTX *ctx, EVP_PKEY *pkey)
279 {
280     struct gost_pmeth_data *data = EVP_PKEY_CTX_get_data(ctx);
281     EC_KEY *ec = NULL;
282
283     if (!data || data->sign_param_nid == NID_undef) {
284         GOSTerr(GOST_F_PKEY_GOST01_PARAMGEN, GOST_R_NO_PARAMETERS_SET);
285         return 0;
286     }
287
288     ec = EC_KEY_new();
289     if (!fill_GOST_EC_params(ec, data->sign_param_nid)
290         || !EVP_PKEY_assign(pkey, NID_id_GostR3410_2001, ec)) {
291         EC_KEY_free(ec);
292         return 0;
293     }
294     return 1;
295 }
296
297 static int pkey_gost2012_paramgen(EVP_PKEY_CTX *ctx, EVP_PKEY *pkey)
298 {
299     struct gost_pmeth_data *data = EVP_PKEY_CTX_get_data(ctx);
300     EC_KEY *ec;
301     int result = 0;
302
303     if (!data || data->sign_param_nid == NID_undef) {
304         GOSTerr(GOST_F_PKEY_GOST12_PARAMGEN, GOST_R_NO_PARAMETERS_SET);
305         return 0;
306     }
307
308     ec = EC_KEY_new();
309     if (!fill_GOST_EC_params(ec, data->sign_param_nid)) {
310         EC_KEY_free(ec);
311         return 0;
312     }
313
314     switch (data->sign_param_nid) {
315     case NID_id_tc26_gost_3410_2012_512_paramSetA:
316     case NID_id_tc26_gost_3410_2012_512_paramSetB:
317         result =
318             (EVP_PKEY_assign(pkey, NID_id_GostR3410_2012_512, ec)) ? 1 : 0;
319         break;
320
321     case NID_id_GostR3410_2001_CryptoPro_A_ParamSet:
322     case NID_id_GostR3410_2001_CryptoPro_B_ParamSet:
323     case NID_id_GostR3410_2001_CryptoPro_C_ParamSet:
324     case NID_id_GostR3410_2001_CryptoPro_XchA_ParamSet:
325     case NID_id_GostR3410_2001_CryptoPro_XchB_ParamSet:
326     case NID_id_GostR3410_2001_TestParamSet:
327         result =
328             (EVP_PKEY_assign(pkey, NID_id_GostR3410_2012_256, ec)) ? 1 : 0;
329         break;
330     default:
331         result = 0;
332         break;
333     }
334
335     if (result == 0)
336         EC_KEY_free(ec);
337
338     return result;
339 }
340
341 /* ----------- keygen callbacks --------------------------------------*/
342 /* Generates GOST_R3410 2001 key and assigns it using specified type */
343 static int pkey_gost2001cp_keygen(EVP_PKEY_CTX *ctx, EVP_PKEY *pkey)
344 {
345     EC_KEY *ec;
346     if (!pkey_gost2001_paramgen(ctx, pkey))
347         return 0;
348     ec = EVP_PKEY_get0(pkey);
349     gost_ec_keygen(ec);
350     return 1;
351 }
352
353 /* Generates GOST_R3410 2012 key and assigns it using specified type */
354 static int pkey_gost2012cp_keygen(EVP_PKEY_CTX *ctx, EVP_PKEY *pkey)
355 {
356     if (!pkey_gost2012_paramgen(ctx, pkey))
357         return 0;
358
359     gost_ec_keygen(EVP_PKEY_get0(pkey));
360     return 1;
361 }
362
363 /* ----------- sign callbacks --------------------------------------*/
364 /*
365  * Packs signature according to Cryptopro rules
366  * and frees up DSA_SIG structure
367  */
368 int pack_sign_cp(DSA_SIG *s, int order, unsigned char *sig, size_t *siglen)
369 {
370     *siglen = 2 * order;
371     memset(sig, 0, *siglen);
372     store_bignum(s->s, sig, order);
373     store_bignum(s->r, sig + order, order);
374     DSA_SIG_free(s);
375     return 1;
376 }
377
378 static int pkey_gost_ec_cp_sign(EVP_PKEY_CTX *ctx, unsigned char *sig,
379                                 size_t *siglen, const unsigned char *tbs,
380                                 size_t tbs_len)
381 {
382     DSA_SIG *unpacked_sig = NULL;
383     EVP_PKEY *pkey = EVP_PKEY_CTX_get0_pkey(ctx);
384     int order = 0;
385
386     if (!siglen)
387         return 0;
388     if (!pkey)
389         return 0;
390
391     switch (EVP_PKEY_base_id(pkey)) {
392     case NID_id_GostR3410_2001:
393     case NID_id_GostR3410_2012_256:
394         order = 64;
395         break;
396     case NID_id_GostR3410_2012_512:
397         order = 128;
398         break;
399     default:
400         return 0;
401     }
402
403     if (!sig) {
404         *siglen = order;
405         return 1;
406     }
407     unpacked_sig = gost_ec_sign(tbs, tbs_len, EVP_PKEY_get0(pkey));
408     if (!unpacked_sig) {
409         return 0;
410     }
411     return pack_sign_cp(unpacked_sig, order / 2, sig, siglen);
412 }
413
414 /* ------------------- verify callbacks ---------------------------*/
415 /* Unpack signature according to cryptopro rules  */
416 DSA_SIG *unpack_cp_signature(const unsigned char *sig, size_t siglen)
417 {
418     DSA_SIG *s;
419
420     s = DSA_SIG_new();
421     if (s == NULL) {
422         GOSTerr(GOST_F_UNPACK_CP_SIGNATURE, ERR_R_MALLOC_FAILURE);
423         return NULL;
424     }
425     s->s = BN_bin2bn(sig, siglen / 2, NULL);
426     s->r = BN_bin2bn(sig + siglen / 2, siglen / 2, NULL);
427     return s;
428 }
429
430 static int pkey_gost_ec_cp_verify(EVP_PKEY_CTX *ctx, const unsigned char *sig,
431                                   size_t siglen, const unsigned char *tbs,
432                                   size_t tbs_len)
433 {
434     int ok = 0;
435     EVP_PKEY *pub_key = EVP_PKEY_CTX_get0_pkey(ctx);
436     DSA_SIG *s = (sig) ? unpack_cp_signature(sig, siglen) : NULL;
437     if (!s)
438         return 0;
439 #ifdef DEBUG_SIGN
440     fprintf(stderr, "R=");
441     BN_print_fp(stderr, s->r);
442     fprintf(stderr, "\nS=");
443     BN_print_fp(stderr, s->s);
444     fprintf(stderr, "\n");
445 #endif
446     if (pub_key)
447         ok = gost_ec_verify(tbs, tbs_len, s, EVP_PKEY_get0(pub_key));
448     DSA_SIG_free(s);
449     return ok;
450 }
451
452 /* ------------- encrypt init -------------------------------------*/
453 /* Generates ephermeral key */
454 static int pkey_gost_encrypt_init(EVP_PKEY_CTX *ctx)
455 {
456     return 1;
457 }
458
459 /* --------------- Derive init ------------------------------------*/
460 static int pkey_gost_derive_init(EVP_PKEY_CTX *ctx)
461 {
462     return 1;
463 }
464
465 /* -------- PKEY_METHOD for GOST MAC algorithm --------------------*/
466 static int pkey_gost_mac_init(EVP_PKEY_CTX *ctx)
467 {
468     struct gost_mac_pmeth_data *data = OPENSSL_malloc(sizeof(*data));
469
470     if (!data)
471         return 0;
472     memset(data, 0, sizeof(*data));
473     EVP_PKEY_CTX_set_data(ctx, data);
474     return 1;
475 }
476
477 static void pkey_gost_mac_cleanup(EVP_PKEY_CTX *ctx)
478 {
479     struct gost_mac_pmeth_data *data = EVP_PKEY_CTX_get_data(ctx);
480     if (data)
481         OPENSSL_free(data);
482 }
483
484 static int pkey_gost_mac_copy(EVP_PKEY_CTX *dst, EVP_PKEY_CTX *src)
485 {
486     struct gost_mac_pmeth_data *dst_data, *src_data;
487     if (!pkey_gost_mac_init(dst)) {
488         return 0;
489     }
490     src_data = EVP_PKEY_CTX_get_data(src);
491     dst_data = EVP_PKEY_CTX_get_data(dst);
492     if (!src_data || !dst_data)
493         return 0;
494
495     *dst_data = *src_data;
496     return 1;
497 }
498
499 static int pkey_gost_mac_ctrl(EVP_PKEY_CTX *ctx, int type, int p1, void *p2)
500 {
501     struct gost_mac_pmeth_data *data =
502         (struct gost_mac_pmeth_data *)EVP_PKEY_CTX_get_data(ctx);
503
504     switch (type) {
505     case EVP_PKEY_CTRL_MD:
506         {
507             int nid = EVP_MD_type((const EVP_MD *)p2);
508             if (nid != NID_id_Gost28147_89_MAC && nid != NID_gost_mac_12) {
509                 GOSTerr(GOST_F_PKEY_GOST_MAC_CTRL,
510                         GOST_R_INVALID_DIGEST_TYPE);
511                 return 0;
512             }
513             data->md = (EVP_MD *)p2;
514             return 1;
515         }
516
517     case EVP_PKEY_CTRL_GET_MD:
518         *(const EVP_MD **)p2 = data->md;
519         return 1;
520
521     case EVP_PKEY_CTRL_PKCS7_ENCRYPT:
522     case EVP_PKEY_CTRL_PKCS7_DECRYPT:
523     case EVP_PKEY_CTRL_PKCS7_SIGN:
524         return 1;
525     case EVP_PKEY_CTRL_SET_MAC_KEY:
526         if (p1 != 32) {
527             GOSTerr(GOST_F_PKEY_GOST_MAC_CTRL, GOST_R_INVALID_MAC_KEY_LENGTH);
528             return 0;
529         }
530
531         memcpy(data->key, p2, 32);
532         data->key_set = 1;
533         return 1;
534     case EVP_PKEY_CTRL_DIGESTINIT:
535         {
536             EVP_MD_CTX *mctx = p2;
537             void *key;
538             if (!data->key_set) {
539                 EVP_PKEY *pkey = EVP_PKEY_CTX_get0_pkey(ctx);
540                 if (!pkey) {
541                     GOSTerr(GOST_F_PKEY_GOST_MAC_CTRL,
542                             GOST_R_MAC_KEY_NOT_SET);
543                     return 0;
544                 }
545                 key = EVP_PKEY_get0(pkey);
546                 if (!key) {
547                     GOSTerr(GOST_F_PKEY_GOST_MAC_CTRL,
548                             GOST_R_MAC_KEY_NOT_SET);
549                     return 0;
550                 }
551             } else {
552                 key = &(data->key);
553             }
554             return mctx->digest->md_ctrl(mctx, EVP_MD_CTRL_SET_KEY, 32, key);
555         }
556     }
557     return -2;
558 }
559
560 static int pkey_gost_mac_ctrl_str(EVP_PKEY_CTX *ctx,
561                                   const char *type, const char *value)
562 {
563     if (strcmp(type, key_ctrl_string) == 0) {
564         if (strlen(value) != 32) {
565             GOSTerr(GOST_F_PKEY_GOST_MAC_CTRL_STR,
566                     GOST_R_INVALID_MAC_KEY_LENGTH);
567             return 0;
568         }
569         return pkey_gost_mac_ctrl(ctx, EVP_PKEY_CTRL_SET_MAC_KEY,
570                                   32, (char *)value);
571     }
572     if (strcmp(type, hexkey_ctrl_string) == 0) {
573         long keylen;
574         int ret;
575         unsigned char *keybuf = string_to_hex(value, &keylen);
576         if (!keybuf || keylen != 32) {
577             GOSTerr(GOST_F_PKEY_GOST_MAC_CTRL_STR,
578                     GOST_R_INVALID_MAC_KEY_LENGTH);
579             OPENSSL_free(keybuf);
580             return 0;
581         }
582         ret = pkey_gost_mac_ctrl(ctx, EVP_PKEY_CTRL_SET_MAC_KEY, 32, keybuf);
583         OPENSSL_free(keybuf);
584         return ret;
585
586     }
587     return -2;
588 }
589
590 static int pkey_gost_mac_keygen_base(EVP_PKEY_CTX *ctx,
591                                      EVP_PKEY *pkey, int mac_nid)
592 {
593     struct gost_mac_pmeth_data *data = EVP_PKEY_CTX_get_data(ctx);
594     unsigned char *keydata;
595     if (!data || !data->key_set) {
596         GOSTerr(GOST_F_PKEY_GOST_MAC_KEYGEN, GOST_R_MAC_KEY_NOT_SET);
597         return 0;
598     }
599     keydata = OPENSSL_malloc(32);
600     if (keydata == NULL)
601         return 0;
602     memcpy(keydata, data->key, 32);
603     EVP_PKEY_assign(pkey, mac_nid, keydata);
604     return 1;
605 }
606
607 static int pkey_gost_mac_keygen_12(EVP_PKEY_CTX *ctx, EVP_PKEY *pkey)
608 {
609     return pkey_gost_mac_keygen_base(ctx, pkey, NID_gost_mac_12);
610 }
611
612 static int pkey_gost_mac_keygen(EVP_PKEY_CTX *ctx, EVP_PKEY *pkey)
613 {
614     return pkey_gost_mac_keygen_base(ctx, pkey, NID_id_Gost28147_89_MAC);
615 }
616
617 static int pkey_gost_mac_signctx_init(EVP_PKEY_CTX *ctx, EVP_MD_CTX *mctx)
618 {
619     return 1;
620 }
621
622 static int pkey_gost_mac_signctx(EVP_PKEY_CTX *ctx, unsigned char *sig,
623                                  size_t *siglen, EVP_MD_CTX *mctx)
624 {
625     unsigned int tmpsiglen;
626     int ret;
627
628     if (!siglen)
629         return 0;
630     tmpsiglen = *siglen;        /* for platforms where sizeof(int) !=
631                                  * sizeof(size_t) */
632
633     if (!sig) {
634         *siglen = 4;
635         return 1;
636     }
637     ret = EVP_DigestFinal_ex(mctx, sig, &tmpsiglen);
638     *siglen = tmpsiglen;
639     return ret;
640 }
641
642 /* ----------------------------------------------------------------*/
643 int register_pmeth_gost(int id, EVP_PKEY_METHOD **pmeth, int flags)
644 {
645     *pmeth = EVP_PKEY_meth_new(id, flags);
646     if (!*pmeth)
647         return 0;
648
649     switch (id) {
650     case NID_id_GostR3410_2001:
651         EVP_PKEY_meth_set_ctrl(*pmeth,
652                                pkey_gost_ctrl, pkey_gost_ec_ctrl_str_256);
653         EVP_PKEY_meth_set_sign(*pmeth, NULL, pkey_gost_ec_cp_sign);
654         EVP_PKEY_meth_set_verify(*pmeth, NULL, pkey_gost_ec_cp_verify);
655
656         EVP_PKEY_meth_set_keygen(*pmeth, NULL, pkey_gost2001cp_keygen);
657
658         EVP_PKEY_meth_set_encrypt(*pmeth,
659                                   pkey_gost_encrypt_init,
660                                   pkey_GOST_ECcp_encrypt);
661         EVP_PKEY_meth_set_decrypt(*pmeth, NULL, pkey_GOST_ECcp_decrypt);
662         EVP_PKEY_meth_set_derive(*pmeth,
663                                  pkey_gost_derive_init, pkey_gost_ec_derive);
664         EVP_PKEY_meth_set_paramgen(*pmeth, pkey_gost_paramgen_init,
665                                    pkey_gost2001_paramgen);
666         break;
667     case NID_id_GostR3410_2012_256:
668         EVP_PKEY_meth_set_ctrl(*pmeth,
669                                pkey_gost_ctrl, pkey_gost_ec_ctrl_str_256);
670         EVP_PKEY_meth_set_sign(*pmeth, NULL, pkey_gost_ec_cp_sign);
671         EVP_PKEY_meth_set_verify(*pmeth, NULL, pkey_gost_ec_cp_verify);
672
673         EVP_PKEY_meth_set_keygen(*pmeth, NULL, pkey_gost2012cp_keygen);
674
675         EVP_PKEY_meth_set_encrypt(*pmeth,
676                                   pkey_gost_encrypt_init,
677                                   pkey_GOST_ECcp_encrypt);
678         EVP_PKEY_meth_set_decrypt(*pmeth, NULL, pkey_GOST_ECcp_decrypt);
679         EVP_PKEY_meth_set_derive(*pmeth,
680                                  pkey_gost_derive_init, pkey_gost_ec_derive);
681         EVP_PKEY_meth_set_paramgen(*pmeth,
682                                    pkey_gost_paramgen_init,
683                                    pkey_gost2012_paramgen);
684         break;
685     case NID_id_GostR3410_2012_512:
686         EVP_PKEY_meth_set_ctrl(*pmeth,
687                                pkey_gost_ctrl, pkey_gost_ec_ctrl_str_512);
688         EVP_PKEY_meth_set_sign(*pmeth, NULL, pkey_gost_ec_cp_sign);
689         EVP_PKEY_meth_set_verify(*pmeth, NULL, pkey_gost_ec_cp_verify);
690
691         EVP_PKEY_meth_set_keygen(*pmeth, NULL, pkey_gost2012cp_keygen);
692
693         EVP_PKEY_meth_set_encrypt(*pmeth,
694                                   pkey_gost_encrypt_init,
695                                   pkey_GOST_ECcp_encrypt);
696         EVP_PKEY_meth_set_decrypt(*pmeth, NULL, pkey_GOST_ECcp_decrypt);
697         EVP_PKEY_meth_set_derive(*pmeth,
698                                  pkey_gost_derive_init, pkey_gost_ec_derive);
699         EVP_PKEY_meth_set_paramgen(*pmeth,
700                                    pkey_gost_paramgen_init,
701                                    pkey_gost2012_paramgen);
702         break;
703     case NID_id_Gost28147_89_MAC:
704         EVP_PKEY_meth_set_ctrl(*pmeth, pkey_gost_mac_ctrl,
705                                pkey_gost_mac_ctrl_str);
706         EVP_PKEY_meth_set_signctx(*pmeth, pkey_gost_mac_signctx_init,
707                                   pkey_gost_mac_signctx);
708         EVP_PKEY_meth_set_keygen(*pmeth, NULL, pkey_gost_mac_keygen);
709         EVP_PKEY_meth_set_init(*pmeth, pkey_gost_mac_init);
710         EVP_PKEY_meth_set_cleanup(*pmeth, pkey_gost_mac_cleanup);
711         EVP_PKEY_meth_set_copy(*pmeth, pkey_gost_mac_copy);
712         return 1;
713     case NID_gost_mac_12:
714         EVP_PKEY_meth_set_ctrl(*pmeth, pkey_gost_mac_ctrl,
715                                pkey_gost_mac_ctrl_str);
716         EVP_PKEY_meth_set_signctx(*pmeth, pkey_gost_mac_signctx_init,
717                                   pkey_gost_mac_signctx);
718         EVP_PKEY_meth_set_keygen(*pmeth, NULL, pkey_gost_mac_keygen_12);
719         EVP_PKEY_meth_set_init(*pmeth, pkey_gost_mac_init);
720         EVP_PKEY_meth_set_cleanup(*pmeth, pkey_gost_mac_cleanup);
721         EVP_PKEY_meth_set_copy(*pmeth, pkey_gost_mac_copy);
722         return 1;
723     default:                   /* Unsupported method */
724         return 0;
725     }
726     EVP_PKEY_meth_set_init(*pmeth, pkey_gost_init);
727     EVP_PKEY_meth_set_cleanup(*pmeth, pkey_gost_cleanup);
728
729     EVP_PKEY_meth_set_copy(*pmeth, pkey_gost_copy);
730     /*
731      * FIXME derive etc...
732      */
733
734     return 1;
735 }