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