]> www.wagner.pp.ru Git - openssl-gost/engine.git/blob - gost_ec_keyx.c
Fix buffer overrun in creating key transport blob according to RFC 9189, 4.2.4.1
[openssl-gost/engine.git] / gost_ec_keyx.c
1 /**********************************************************************
2  *                        gost_ec_keyx.c                              *
3  *                                                                    *
4  *             Copyright (c) 2005-2013 Cryptocom LTD                  *
5  *   Copyright (c) 2018,2020 Dmitry Belyavskiy <beldmit@gmail.com>    *
6  *   Copyright (c) 2020 Billy Brumley <bbrumley@gmail.com>            *
7  *                                                                    *
8  *         This file is distributed under the same license as OpenSSL *
9  *                                                                    *
10  *   VK0 R 50.1.113-2016 / RFC 7836                                   *
11  *   KEG R 1323565.1.020-2018                                         *
12  *   VK0 34.10-2001 key exchange and GOST R 34.10-2001 (RFC 4357)     *
13  *   based PKCS7/SMIME support                                        *
14  *          Requires OpenSSL 0.9.9 for compilation                    *
15  **********************************************************************/
16 #include <openssl/evp.h>
17 #include <openssl/err.h>
18 #include <openssl/rand.h>
19 #include <string.h>
20 #include <openssl/objects.h>
21 #include "gost89.h"
22 #include "e_gost_err.h"
23 #include "gost_keywrap.h"
24 #include "gost_lcl.h"
25
26 /* Implementation of CryptoPro VKO 34.10-2001/2012 algorithm */
27 int VKO_compute_key(unsigned char *shared_key,
28                     const EC_POINT *pub_key, const EC_KEY *priv_key,
29                     const unsigned char *ukm, const size_t ukm_size,
30                     const int vko_dgst_nid)
31 {
32     unsigned char *databuf = NULL;
33     BIGNUM *scalar = NULL, *X = NULL, *Y = NULL;
34     const EC_GROUP *grp = NULL;
35     EC_POINT *pnt = NULL;
36     BN_CTX *ctx = NULL;
37     EVP_MD_CTX *mdctx = NULL;
38     const EVP_MD *md = NULL;
39     int buf_len, half_len;
40     int ret = 0;
41
42     if ((ctx = BN_CTX_secure_new()) == NULL) {
43         GOSTerr(GOST_F_VKO_COMPUTE_KEY, ERR_R_MALLOC_FAILURE);
44         return 0;
45     }
46     BN_CTX_start(ctx);
47
48     md = EVP_get_digestbynid(vko_dgst_nid);
49     if (!md) {
50         GOSTerr(GOST_F_VKO_COMPUTE_KEY, GOST_R_INVALID_DIGEST_TYPE);
51         goto err;
52     }
53
54     grp = EC_KEY_get0_group(priv_key);
55     scalar = BN_CTX_get(ctx);
56     X = BN_CTX_get(ctx);
57
58     if ((Y = BN_CTX_get(ctx)) == NULL
59         || (pnt = EC_POINT_new(grp)) == NULL
60         || BN_lebin2bn(ukm, ukm_size, scalar) == NULL
61         || !BN_mod_mul(scalar, scalar, EC_KEY_get0_private_key(priv_key),
62                        EC_GROUP_get0_order(grp), ctx))
63         goto err;
64
65 #if 0
66     /*-
67      * These two curves have cofactor 4; the rest have cofactor 1.
68      * But currently gost_ec_point_mul takes care of the cofactor clearing,
69      * hence this code is not needed.
70      */
71     switch (EC_GROUP_get_curve_name(grp)) {
72         case NID_id_tc26_gost_3410_2012_256_paramSetA:
73         case NID_id_tc26_gost_3410_2012_512_paramSetC:
74             if (!BN_lshift(scalar, scalar, 2))
75                 goto err;
76             break;
77     }
78 #endif
79
80     if (!gost_ec_point_mul(grp, pnt, NULL, pub_key, scalar, ctx)) {
81         GOSTerr(GOST_F_VKO_COMPUTE_KEY, GOST_R_ERROR_POINT_MUL);
82         goto err;
83     }
84     if (!EC_POINT_get_affine_coordinates(grp, pnt, X, Y, ctx)) {
85         GOSTerr(GOST_F_VKO_COMPUTE_KEY, ERR_R_EC_LIB);
86         goto err;
87     }
88
89     half_len = BN_num_bytes(EC_GROUP_get0_field(grp));
90     buf_len = 2 * half_len;
91     if ((databuf = OPENSSL_malloc(buf_len)) == NULL) {
92         GOSTerr(GOST_F_VKO_COMPUTE_KEY, ERR_R_MALLOC_FAILURE);
93         goto err;
94     }
95
96     /*
97      * Serialize elliptic curve point same way as we do it when saving key
98      */
99     if (BN_bn2lebinpad(X, databuf, half_len) != half_len
100         || BN_bn2lebinpad(Y, databuf + half_len, half_len) != half_len)
101         goto err;
102
103     if ((mdctx = EVP_MD_CTX_new()) == NULL) {
104         GOSTerr(GOST_F_VKO_COMPUTE_KEY, ERR_R_MALLOC_FAILURE);
105         goto err;
106     }
107
108     if (EVP_MD_CTX_init(mdctx) == 0
109         || EVP_DigestInit_ex(mdctx, md, NULL) == 0
110         || EVP_DigestUpdate(mdctx, databuf, buf_len) == 0
111         || EVP_DigestFinal_ex(mdctx, shared_key, NULL) == 0) {
112         GOSTerr(GOST_F_VKO_COMPUTE_KEY, ERR_R_EVP_LIB);
113         goto err;
114     }
115
116     ret = (EVP_MD_size(md) > 0) ? EVP_MD_size(md) : 0;
117
118  err:
119     BN_CTX_end(ctx);
120     BN_CTX_free(ctx);
121     EC_POINT_free(pnt);
122     EVP_MD_CTX_free(mdctx);
123     OPENSSL_free(databuf);
124
125     return ret;
126 }
127
128 /*
129  * KEG Algorithm described in R 1323565.1.020-2018 6.4.5.1.
130  * keyout expected to be 64 bytes
131  * */
132 static int gost_keg(const unsigned char *ukm_source, int pkey_nid,
133                     const EC_POINT *pub_key, const EC_KEY *priv_key,
134                     unsigned char *keyout)
135 {
136 /* Adjust UKM */
137     unsigned char real_ukm[16];
138     size_t keylen = 0;
139
140     memset(real_ukm, 0, 16);
141     if (memcmp(ukm_source, real_ukm, 16) == 0)
142         real_ukm[15] = 1;
143     else {
144         memcpy(real_ukm, ukm_source, 16);
145         BUF_reverse(real_ukm, NULL, 16);
146     }
147
148     switch (pkey_nid) {
149     case NID_id_GostR3410_2012_512:
150         keylen =
151             VKO_compute_key(keyout, pub_key, priv_key, real_ukm, 16,
152                             NID_id_GostR3411_2012_512);
153         return (keylen) ? keylen : 0;
154         break;
155
156     case NID_id_GostR3410_2012_256:
157         {
158             unsigned char tmpkey[32];
159             keylen =
160               VKO_compute_key(tmpkey, pub_key, priv_key, real_ukm, 16,
161                   NID_id_GostR3411_2012_256);
162
163             if (keylen == 0)
164                 return 0;
165
166             if (gost_kdftree2012_256
167                 (keyout, 64, tmpkey, 32, (const unsigned char *)"kdf tree", 8,
168                  ukm_source + 16, 8, 1) > 0)
169                 keylen = 64;
170             else
171                 keylen = 0;
172
173             OPENSSL_cleanse(tmpkey, 32);
174             return (keylen) ? keylen : 0;
175         }
176     default:
177         return 0;
178     }
179 }
180
181 /*
182  * EVP_PKEY_METHOD callback derive.
183  * Implements VKO R 34.10-2001/2012 algorithms
184  */
185 /*
186  * Backend for EVP_PKEY_derive()
187  * It have KEG mode (default) and VKO mode (enable by EVP_PKEY_CTRL_SET_VKO).
188  */
189 int pkey_gost_ec_derive(EVP_PKEY_CTX *ctx, unsigned char *key, size_t *keylen)
190 {
191     /*
192      * Public key of peer in the ctx field peerkey
193      * Our private key in the ctx pkey
194      * ukm is in the algorithm specific context data
195      */
196     EVP_PKEY *my_key = EVP_PKEY_CTX_get0_pkey(ctx);
197     EVP_PKEY *peer_key = EVP_PKEY_CTX_get0_peerkey(ctx);
198     struct gost_pmeth_data *data = EVP_PKEY_CTX_get_data(ctx);
199     int dgst_nid = NID_undef;
200
201     if (!data || data->shared_ukm_size == 0) {
202         GOSTerr(GOST_F_PKEY_GOST_EC_DERIVE, GOST_R_UKM_NOT_SET);
203         return 0;
204     }
205
206     /* VKO */
207     if (data->vko_dgst_nid) {
208         if (!key) {
209             *keylen = data->vko_dgst_nid == NID_id_GostR3411_2012_256? 32 : 64;
210             return 1;
211         }
212         *keylen = VKO_compute_key(key,
213                                   EC_KEY_get0_public_key(EVP_PKEY_get0(peer_key)),
214                                   (EC_KEY *)EVP_PKEY_get0(my_key),
215                                   data->shared_ukm, data->shared_ukm_size,
216                                   data->vko_dgst_nid);
217         return (*keylen) ? 1 : 0;
218     }
219
220     /*
221      * shared_ukm_size = 8 stands for pre-2018 cipher suites
222      * It means 32 bytes of key length, 8 byte UKM, 32-bytes hash
223      *
224      * shared_ukm_size = 32 stands for post-2018 cipher suites
225      * It means 64 bytes of shared_key, 16 bytes of UKM and either
226      * 64 bytes of hash or 64 bytes of TLSTREE output
227      * */
228
229     switch (data->shared_ukm_size) {
230     case 8:
231         {
232             if (key == NULL) {
233                 *keylen = 32;
234                 return 1;
235             }
236             EVP_PKEY_get_default_digest_nid(my_key, &dgst_nid);
237             if (dgst_nid == NID_id_GostR3411_2012_512)
238                 dgst_nid = NID_id_GostR3411_2012_256;
239
240             *keylen =
241                 VKO_compute_key(key,
242                                 EC_KEY_get0_public_key(EVP_PKEY_get0(peer_key)),
243                                 (EC_KEY *)EVP_PKEY_get0(my_key),
244                                 data->shared_ukm, 8, dgst_nid);
245             return (*keylen) ? 1 : 0;
246         }
247         break;
248     case 32:
249         {
250             if (key == NULL) {
251                 *keylen = 64;
252                 return 1;
253             }
254
255             *keylen = gost_keg(data->shared_ukm, EVP_PKEY_id(my_key),
256                                EC_KEY_get0_public_key(EVP_PKEY_get0(peer_key)),
257                                (EC_KEY *)EVP_PKEY_get0(my_key), key);
258             return (*keylen) ? 1 : 0;
259         }
260
261         break;
262     default:
263         return 0;
264     }
265 }
266
267 /*
268  * Generates ephemeral key based on pubk algorithm computes shared key using
269  * VKO and returns filled up GOST_KEY_TRANSPORT structure
270  */
271
272 /*
273  * EVP_PKEY_METHOD callback encrypt
274  * Implementation of GOST2001/12 key transport, cryptopro variation
275  */
276
277 static int pkey_GOST_ECcp_encrypt(EVP_PKEY_CTX *pctx, unsigned char *out,
278                            size_t *out_len, const unsigned char *key,
279                            size_t key_len)
280 {
281     GOST_KEY_TRANSPORT *gkt = NULL;
282     EVP_PKEY *pubk = EVP_PKEY_CTX_get0_pkey(pctx);
283     struct gost_pmeth_data *data = EVP_PKEY_CTX_get_data(pctx);
284     int pkey_nid = EVP_PKEY_base_id(pubk);
285     ASN1_OBJECT *crypt_params_obj = (pkey_nid == NID_id_GostR3410_2001 || pkey_nid == NID_id_GostR3410_2001DH) ?
286         OBJ_nid2obj(NID_id_Gost28147_89_CryptoPro_A_ParamSet) :
287         OBJ_nid2obj(NID_id_tc26_gost_28147_param_Z);
288     const struct gost_cipher_info *param =
289         get_encryption_params(crypt_params_obj);
290     unsigned char ukm[8], shared_key[32], crypted_key[44];
291     int ret = 0;
292     int key_is_ephemeral = 1;
293     gost_ctx cctx;
294     EVP_PKEY *sec_key = EVP_PKEY_CTX_get0_peerkey(pctx);
295     if (data->shared_ukm_size) {
296         memcpy(ukm, data->shared_ukm, 8);
297     } else {
298         if (RAND_bytes(ukm, 8) <= 0) {
299             GOSTerr(GOST_F_PKEY_GOST_ECCP_ENCRYPT, GOST_R_RNG_ERROR);
300             return 0;
301         }
302     }
303     if (!param)
304         goto err;
305     /* Check for private key in the peer_key of context */
306     if (sec_key) {
307         key_is_ephemeral = 0;
308         if (!gost_get0_priv_key(sec_key)) {
309             GOSTerr(GOST_F_PKEY_GOST_ECCP_ENCRYPT,
310                     GOST_R_NO_PRIVATE_PART_OF_NON_EPHEMERAL_KEYPAIR);
311             goto err;
312         }
313     } else {
314         key_is_ephemeral = 1;
315         if (out) {
316             sec_key = EVP_PKEY_new();
317             if (!EVP_PKEY_assign(sec_key, EVP_PKEY_base_id(pubk), EC_KEY_new())
318                 || !EVP_PKEY_copy_parameters(sec_key, pubk)
319                 || !gost_ec_keygen(EVP_PKEY_get0(sec_key))) {
320                 GOSTerr(GOST_F_PKEY_GOST_ECCP_ENCRYPT,
321                         GOST_R_ERROR_COMPUTING_SHARED_KEY);
322                 goto err;
323             }
324         }
325     }
326     if (out) {
327         int dgst_nid = NID_undef;
328         EVP_PKEY_get_default_digest_nid(pubk, &dgst_nid);
329         if (dgst_nid == NID_id_GostR3411_2012_512)
330             dgst_nid = NID_id_GostR3411_2012_256;
331
332         if (!VKO_compute_key(shared_key,
333                              EC_KEY_get0_public_key(EVP_PKEY_get0(pubk)),
334                              EVP_PKEY_get0(sec_key), ukm, 8, dgst_nid)) {
335             GOSTerr(GOST_F_PKEY_GOST_ECCP_ENCRYPT,
336                     GOST_R_ERROR_COMPUTING_SHARED_KEY);
337             goto err;
338         }
339         gost_init(&cctx, param->sblock);
340         keyWrapCryptoPro(&cctx, shared_key, ukm, key, crypted_key);
341     }
342     gkt = GOST_KEY_TRANSPORT_new();
343     if (!gkt) {
344         goto err;
345     }
346     if (!ASN1_OCTET_STRING_set(gkt->key_agreement_info->eph_iv, ukm, 8)) {
347         goto err;
348     }
349     if (!ASN1_OCTET_STRING_set(gkt->key_info->imit, crypted_key + 40, 4)) {
350         goto err;
351     }
352     if (!ASN1_OCTET_STRING_set
353         (gkt->key_info->encrypted_key, crypted_key + 8, 32)) {
354         goto err;
355     }
356     if (key_is_ephemeral) {
357         if (!X509_PUBKEY_set
358             (&gkt->key_agreement_info->ephem_key, out ? sec_key : pubk)) {
359             GOSTerr(GOST_F_PKEY_GOST_ECCP_ENCRYPT,
360                     GOST_R_CANNOT_PACK_EPHEMERAL_KEY);
361             goto err;
362         }
363     }
364     ASN1_OBJECT_free(gkt->key_agreement_info->cipher);
365     gkt->key_agreement_info->cipher = OBJ_nid2obj(param->nid);
366     if (key_is_ephemeral)
367         EVP_PKEY_free(sec_key);
368     if (!key_is_ephemeral) {
369         /* Set control "public key from client certificate used" */
370         if (EVP_PKEY_CTX_ctrl(pctx, -1, -1, EVP_PKEY_CTRL_PEER_KEY, 3, NULL)
371             <= 0) {
372             GOSTerr(GOST_F_PKEY_GOST_ECCP_ENCRYPT, GOST_R_CTRL_CALL_FAILED);
373             goto err;
374         }
375     }
376     if ((*out_len = i2d_GOST_KEY_TRANSPORT(gkt, out ? &out : NULL)) > 0)
377         ret = 1;
378     OPENSSL_cleanse(shared_key, sizeof(shared_key));
379     GOST_KEY_TRANSPORT_free(gkt);
380     return ret;
381  err:
382     OPENSSL_cleanse(shared_key, sizeof(shared_key));
383     if (key_is_ephemeral)
384         EVP_PKEY_free(sec_key);
385     GOST_KEY_TRANSPORT_free(gkt);
386     return -1;
387 }
388
389 /*
390  * EVP_PKEY_METHOD callback decrypt
391  * Implementation of GOST2018 key transport
392  */
393 static int pkey_gost2018_encrypt(EVP_PKEY_CTX *pctx, unsigned char *out,
394                           size_t *out_len, const unsigned char *key,
395                           size_t key_len)
396 {
397     PSKeyTransport_gost *pst = NULL;
398     EVP_PKEY *pubk = EVP_PKEY_CTX_get0_pkey(pctx);
399     struct gost_pmeth_data *data = EVP_PKEY_CTX_get_data(pctx);
400     int pkey_nid = EVP_PKEY_base_id(pubk);
401     unsigned char expkeys[64];
402     EVP_PKEY *sec_key = NULL;
403     int ret = 0;
404     int mac_nid = NID_undef;
405     size_t mac_len = 0;
406     int exp_len = 0, iv_len = 0;
407     unsigned char *exp_buf = NULL;
408     int key_is_ephemeral = 0;
409     int res_len = 0;
410
411     switch (data->cipher_nid) {
412     case NID_magma_ctr:
413         mac_nid = NID_magma_mac;
414         mac_len = 8;
415         iv_len = 4;
416         break;
417     case NID_grasshopper_ctr:
418         mac_nid = NID_grasshopper_mac;
419         mac_len = 16;
420         iv_len = 8;
421         break;
422     default:
423         GOSTerr(GOST_F_PKEY_GOST2018_ENCRYPT, GOST_R_INVALID_CIPHER);
424         return -1;
425         break;
426     }
427     exp_len = key_len + mac_len;
428     exp_buf = OPENSSL_malloc(exp_len);
429     if (!exp_buf) {
430         GOSTerr(GOST_F_PKEY_GOST2018_ENCRYPT, ERR_R_MALLOC_FAILURE);
431         return -1;
432     }
433
434     sec_key = EVP_PKEY_CTX_get0_peerkey(pctx);
435     if (!sec_key)
436     {
437       sec_key = EVP_PKEY_new();
438       if (sec_key == NULL) {
439         GOSTerr(GOST_F_PKEY_GOST2018_ENCRYPT, ERR_R_MALLOC_FAILURE );
440         goto err;
441       }
442
443       if (!EVP_PKEY_assign(sec_key, EVP_PKEY_base_id(pubk), EC_KEY_new())
444           || !EVP_PKEY_copy_parameters(sec_key, pubk)
445           || !gost_ec_keygen(EVP_PKEY_get0(sec_key))) {
446         GOSTerr(GOST_F_PKEY_GOST2018_ENCRYPT,
447             GOST_R_ERROR_COMPUTING_SHARED_KEY);
448         goto err;
449       }
450       key_is_ephemeral = 1;
451     }
452
453     if (data->shared_ukm_size == 0) {
454         if (RAND_bytes(data->shared_ukm, 32) <= 0) {
455             GOSTerr(GOST_F_PKEY_GOST2018_ENCRYPT, ERR_R_INTERNAL_ERROR);
456             goto err;
457         }
458         data->shared_ukm_size = 32;
459     }
460
461     if (gost_keg(data->shared_ukm, pkey_nid,
462                  EC_KEY_get0_public_key(EVP_PKEY_get0(pubk)),
463                  EVP_PKEY_get0(sec_key), expkeys) <= 0) {
464         GOSTerr(GOST_F_PKEY_GOST2018_ENCRYPT,
465                 GOST_R_ERROR_COMPUTING_EXPORT_KEYS);
466         goto err;
467     }
468
469     if (gost_kexp15(key, key_len, data->cipher_nid, expkeys + 32,
470                     mac_nid, expkeys + 0, data->shared_ukm + 24, iv_len,
471                     exp_buf, &exp_len) <= 0) {
472         GOSTerr(GOST_F_PKEY_GOST2018_ENCRYPT, GOST_R_CANNOT_PACK_EPHEMERAL_KEY);
473         goto err;
474     }
475
476     pst = PSKeyTransport_gost_new();
477     if (!pst) {
478         GOSTerr(GOST_F_PKEY_GOST2018_ENCRYPT, ERR_R_MALLOC_FAILURE);
479         goto err;
480     }
481
482     pst->ukm = ASN1_OCTET_STRING_new();
483     if (pst->ukm == NULL) {
484         GOSTerr(GOST_F_PKEY_GOST2018_ENCRYPT, ERR_R_MALLOC_FAILURE);
485         goto err;
486     }
487
488     if (!ASN1_OCTET_STRING_set(pst->ukm, data->shared_ukm, data->shared_ukm_size)) {
489         GOSTerr(GOST_F_PKEY_GOST2018_ENCRYPT, ERR_R_MALLOC_FAILURE);
490         goto err;
491     }
492
493     if (!ASN1_OCTET_STRING_set(pst->psexp, exp_buf, exp_len)) {
494         GOSTerr(GOST_F_PKEY_GOST2018_ENCRYPT, ERR_R_MALLOC_FAILURE);
495         goto err;
496     }
497
498     if (!X509_PUBKEY_set(&pst->ephem_key, out ? sec_key : pubk)) {
499         GOSTerr(GOST_F_PKEY_GOST2018_ENCRYPT, GOST_R_CANNOT_PACK_EPHEMERAL_KEY);
500         goto err;
501     }
502
503     res_len = i2d_PSKeyTransport_gost(pst, NULL);
504     if (res_len <= 0) {
505         GOSTerr(GOST_F_PKEY_GOST2018_ENCRYPT, ERR_R_ASN1_LIB);
506         goto err;
507     }
508
509     if (out == NULL) {
510         *out_len = res_len;
511         ret = 1;
512     } else {
513         if ((size_t)res_len > *out_len) {
514             GOSTerr(GOST_F_PKEY_GOST2018_ENCRYPT, GOST_R_INVALID_BUFFER_SIZE);
515             goto err;
516         }
517         if ((*out_len = i2d_PSKeyTransport_gost(pst, &out)) > 0)
518             ret = 1;
519         else
520             GOSTerr(GOST_F_PKEY_GOST2018_ENCRYPT, ERR_R_ASN1_LIB);
521     }
522
523  err:
524     OPENSSL_cleanse(expkeys, sizeof(expkeys));
525     if (key_is_ephemeral)
526         EVP_PKEY_free(sec_key);
527
528     PSKeyTransport_gost_free(pst);
529     OPENSSL_free(exp_buf);
530     return ret;
531 }
532
533 int pkey_gost_encrypt(EVP_PKEY_CTX *pctx, unsigned char *out,
534                       size_t *out_len, const unsigned char *key, size_t key_len)
535 {
536   struct gost_pmeth_data *gctx = EVP_PKEY_CTX_get_data(pctx);
537   switch (gctx->cipher_nid)
538   {
539     case NID_id_Gost28147_89:
540     case NID_undef: /* FIXME */
541       return pkey_GOST_ECcp_encrypt(pctx, out, out_len, key, key_len);
542       break;
543     case NID_kuznyechik_ctr:
544     case NID_magma_ctr:
545       return pkey_gost2018_encrypt(pctx, out, out_len, key, key_len);
546       break;
547     default:
548       GOSTerr(GOST_F_PKEY_GOST_ENCRYPT, ERR_R_INTERNAL_ERROR);
549       return -1;
550   }
551 }
552
553 /*
554  * EVP_PKEY_METHOD callback decrypt
555  * Implementation of GOST2001/12 key transport, cryptopro variation
556  */
557 static int pkey_GOST_ECcp_decrypt(EVP_PKEY_CTX *pctx, unsigned char *key,
558                            size_t *key_len, const unsigned char *in,
559                            size_t in_len)
560 {
561     const unsigned char *p = in;
562     EVP_PKEY *priv = EVP_PKEY_CTX_get0_pkey(pctx);
563     GOST_KEY_TRANSPORT *gkt = NULL;
564     int ret = 0;
565     unsigned char wrappedKey[44];
566     unsigned char sharedKey[32];
567     gost_ctx ctx;
568     const struct gost_cipher_info *param = NULL;
569     EVP_PKEY *eph_key = NULL, *peerkey = NULL;
570     int dgst_nid = NID_undef;
571
572     if (!key) {
573         *key_len = 32;
574         return 1;
575     }
576     gkt = d2i_GOST_KEY_TRANSPORT(NULL, (const unsigned char **)&p, in_len);
577     if (!gkt) {
578         GOSTerr(GOST_F_PKEY_GOST_ECCP_DECRYPT,
579                 GOST_R_ERROR_PARSING_KEY_TRANSPORT_INFO);
580         return -1;
581     }
582
583     /* If key transport structure contains public key, use it */
584     eph_key = X509_PUBKEY_get(gkt->key_agreement_info->ephem_key);
585     if (eph_key) {
586         if (EVP_PKEY_derive_set_peer(pctx, eph_key) <= 0) {
587             GOSTerr(GOST_F_PKEY_GOST_ECCP_DECRYPT,
588                     GOST_R_INCOMPATIBLE_PEER_KEY);
589             goto err;
590         }
591     } else {
592         /* Set control "public key from client certificate used" */
593         if (EVP_PKEY_CTX_ctrl(pctx, -1, -1, EVP_PKEY_CTRL_PEER_KEY, 3, NULL)
594             <= 0) {
595             GOSTerr(GOST_F_PKEY_GOST_ECCP_DECRYPT, GOST_R_CTRL_CALL_FAILED);
596             goto err;
597         }
598     }
599     peerkey = EVP_PKEY_CTX_get0_peerkey(pctx);
600     if (!peerkey) {
601         GOSTerr(GOST_F_PKEY_GOST_ECCP_DECRYPT, GOST_R_NO_PEER_KEY);
602         goto err;
603     }
604
605     param = get_encryption_params(gkt->key_agreement_info->cipher);
606     if (!param) {
607         goto err;
608     }
609
610     gost_init(&ctx, param->sblock);
611     OPENSSL_assert(gkt->key_agreement_info->eph_iv->length == 8);
612     memcpy(wrappedKey, gkt->key_agreement_info->eph_iv->data, 8);
613     OPENSSL_assert(gkt->key_info->encrypted_key->length == 32);
614     memcpy(wrappedKey + 8, gkt->key_info->encrypted_key->data, 32);
615     OPENSSL_assert(gkt->key_info->imit->length == 4);
616     memcpy(wrappedKey + 40, gkt->key_info->imit->data, 4);
617
618     EVP_PKEY_get_default_digest_nid(priv, &dgst_nid);
619     if (dgst_nid == NID_id_GostR3411_2012_512)
620         dgst_nid = NID_id_GostR3411_2012_256;
621
622     if (!VKO_compute_key(sharedKey,
623                          EC_KEY_get0_public_key(EVP_PKEY_get0(peerkey)),
624                          EVP_PKEY_get0(priv), wrappedKey, 8, dgst_nid)) {
625         GOSTerr(GOST_F_PKEY_GOST_ECCP_DECRYPT,
626                 GOST_R_ERROR_COMPUTING_SHARED_KEY);
627         goto err;
628     }
629     if (!keyUnwrapCryptoPro(&ctx, sharedKey, wrappedKey, key)) {
630         GOSTerr(GOST_F_PKEY_GOST_ECCP_DECRYPT,
631                 GOST_R_ERROR_COMPUTING_SHARED_KEY);
632         goto err;
633     }
634
635     ret = 1;
636  err:
637     OPENSSL_cleanse(sharedKey, sizeof(sharedKey));
638     EVP_PKEY_free(eph_key);
639     GOST_KEY_TRANSPORT_free(gkt);
640     return ret;
641 }
642
643 /*
644  * EVP_PKEY_METHOD callback decrypt
645  * Implementation of GOST2018 key transport
646  */
647 static int pkey_gost2018_decrypt(EVP_PKEY_CTX *pctx, unsigned char *key,
648                           size_t *key_len, const unsigned char *in,
649                           size_t in_len)
650 {
651     const unsigned char *p = in;
652     struct gost_pmeth_data *data;
653     EVP_PKEY *priv;
654     PSKeyTransport_gost *pst = NULL;
655     int ret = 0;
656     unsigned char expkeys[64];
657     EVP_PKEY *eph_key = NULL;
658     int pkey_nid;
659     int mac_nid = NID_undef;
660     int iv_len = 0;
661
662     if (!(data = EVP_PKEY_CTX_get_data(pctx)) ||
663         !(priv = EVP_PKEY_CTX_get0_pkey(pctx))) {
664        GOSTerr(GOST_F_PKEY_GOST2018_DECRYPT, GOST_R_ERROR_COMPUTING_EXPORT_KEYS);
665        ret = 0;
666        goto err;
667     }
668     pkey_nid = EVP_PKEY_base_id(priv);
669
670     switch (data->cipher_nid) {
671     case NID_magma_ctr:
672         mac_nid = NID_magma_mac;
673         iv_len = 4;
674         break;
675     case NID_grasshopper_ctr:
676         mac_nid = NID_grasshopper_mac;
677         iv_len = 8;
678         break;
679     default:
680         GOSTerr(GOST_F_PKEY_GOST2018_DECRYPT, GOST_R_INVALID_CIPHER);
681         return -1;
682         break;
683     }
684     if (!key) {
685         *key_len = 32;
686         return 1;
687     }
688
689     pst = d2i_PSKeyTransport_gost(NULL, (const unsigned char **)&p, in_len);
690     if (!pst) {
691         GOSTerr(GOST_F_PKEY_GOST2018_DECRYPT,
692                 GOST_R_ERROR_PARSING_KEY_TRANSPORT_INFO);
693         return -1;
694     }
695
696     eph_key = X509_PUBKEY_get(pst->ephem_key);
697 /*
698  * TODO beldmit
699    1.  Checks the next three conditions fulfilling and terminates the
700    connection with fatal error if not.
701
702    o  Q_eph is on the same curve as server public key;
703
704    o  Q_eph is not equal to zero point;
705
706    o  q * Q_eph is not equal to zero point.
707 */
708     if (eph_key == NULL) {
709        GOSTerr(GOST_F_PKEY_GOST2018_DECRYPT,
710                GOST_R_ERROR_COMPUTING_EXPORT_KEYS);
711        ret = 0;
712        goto err;
713     }
714   
715     if (data->shared_ukm_size == 0 && pst->ukm != NULL) {
716         if (EVP_PKEY_CTX_ctrl(pctx, -1, -1, EVP_PKEY_CTRL_SET_IV,
717         ASN1_STRING_length(pst->ukm), (void *)ASN1_STRING_get0_data(pst->ukm)) < 0) {
718             GOSTerr(GOST_F_PKEY_GOST2018_DECRYPT, GOST_R_UKM_NOT_SET);
719             goto err;
720         }
721     }
722
723     if (gost_keg(data->shared_ukm, pkey_nid,
724                  EC_KEY_get0_public_key(EVP_PKEY_get0(eph_key)),
725                  EVP_PKEY_get0(priv), expkeys) <= 0) {
726         GOSTerr(GOST_F_PKEY_GOST2018_DECRYPT,
727                 GOST_R_ERROR_COMPUTING_EXPORT_KEYS);
728         goto err;
729     }
730
731     if (gost_kimp15(ASN1_STRING_get0_data(pst->psexp),
732                     ASN1_STRING_length(pst->psexp), data->cipher_nid,
733                     expkeys + 32, mac_nid, expkeys + 0, data->shared_ukm + 24,
734                     iv_len, key) <= 0) {
735         GOSTerr(GOST_F_PKEY_GOST2018_DECRYPT, GOST_R_CANNOT_UNPACK_EPHEMERAL_KEY);
736         goto err;
737     }
738
739     ret = 1;
740  err:
741     OPENSSL_cleanse(expkeys, sizeof(expkeys));
742     EVP_PKEY_free(eph_key);
743     PSKeyTransport_gost_free(pst);
744     return ret;
745 }
746
747 int pkey_gost_decrypt(EVP_PKEY_CTX *pctx, unsigned char *key,
748                       size_t *key_len, const unsigned char *in, size_t in_len)
749 {
750     struct gost_pmeth_data *gctx = EVP_PKEY_CTX_get_data(pctx);
751     switch (gctx->cipher_nid)
752     {
753         case NID_id_Gost28147_89:
754         case NID_undef: /* FIXME */
755             return pkey_GOST_ECcp_decrypt(pctx, key, key_len, in, in_len);
756         case NID_kuznyechik_ctr:
757         case NID_magma_ctr:
758             return pkey_gost2018_decrypt(pctx, key, key_len, in, in_len);
759         default:
760       GOSTerr(GOST_F_PKEY_GOST_DECRYPT, ERR_R_INTERNAL_ERROR);
761       return -1;
762     }
763 }
764 /* vim: set expandtab cinoptions=\:0,l1,t0,g0,(0 sw=4 : */