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