]> www.wagner.pp.ru Git - openssl-gost/engine.git/blob - gost_crypt.c
fix_cbc_281
[openssl-gost/engine.git] / gost_crypt.c
1 /**********************************************************************
2  *             gost_crypt.c - Initialize all ciphers                  *
3  *                                                                    *
4  *             Copyright (c) 2005-2006 Cryptocom LTD                  *
5  *             Copyright (c) 2020 Chikunov Vitaly <vt@altlinux.org>   *
6  *         This file is distributed under the same license as OpenSSL *
7  *                                                                    *
8  *       OpenSSL interface to GOST 28147-89 cipher functions          *
9  *          Requires OpenSSL 0.9.9 for compilation                    *
10  **********************************************************************/
11 #include <string.h>
12 #include "gost89.h"
13 #include <openssl/err.h>
14 #include <openssl/rand.h>
15 #include "e_gost_err.h"
16 #include "gost_lcl.h"
17 #include "gost_gost2015.h"
18
19 #if !defined(CCGOST_DEBUG) && !defined(DEBUG)
20 # ifndef NDEBUG
21 #  define NDEBUG
22 # endif
23 #endif
24 #include <assert.h>
25
26 static int gost_cipher_init(EVP_CIPHER_CTX *ctx, const unsigned char *key,
27                             const unsigned char *iv, int enc);
28 static int gost_cipher_init_cbc(EVP_CIPHER_CTX *ctx, const unsigned char *key,
29                                 const unsigned char *iv, int enc);
30 static int gost_cipher_init_cpa(EVP_CIPHER_CTX *ctx, const unsigned char *key,
31                                 const unsigned char *iv, int enc);
32 static int gost_cipher_init_cp_12(EVP_CIPHER_CTX *ctx,
33                                   const unsigned char *key,
34                                   const unsigned char *iv, int enc);
35 /* Handles block of data in CFB mode */
36 static int gost_cipher_do_cfb(EVP_CIPHER_CTX *ctx, unsigned char *out,
37                               const unsigned char *in, size_t inl);
38 /* Handles block of data in CBC mode */
39 static int gost_cipher_do_cbc(EVP_CIPHER_CTX *ctx, unsigned char *out,
40                               const unsigned char *in, size_t inl);
41 /* Handles block of data in CNT mode */
42 static int gost_cipher_do_cnt(EVP_CIPHER_CTX *ctx, unsigned char *out,
43                               const unsigned char *in, size_t inl);
44 /* Cleanup function */
45 static int gost_cipher_cleanup(EVP_CIPHER_CTX *);
46 /* set/get cipher parameters */
47 static int gost89_set_asn1_parameters(EVP_CIPHER_CTX *ctx, ASN1_TYPE *params);
48 static int gost89_get_asn1_parameters(EVP_CIPHER_CTX *ctx, ASN1_TYPE *params);
49 /* Control function */
50 static int gost_cipher_ctl(EVP_CIPHER_CTX *ctx, int type, int arg, void *ptr);
51
52 static int magma_cipher_init(EVP_CIPHER_CTX *ctx, const unsigned char *key,
53                              const unsigned char *iv, int enc);
54 static int magma_cipher_init_ctr_acpkm_omac(EVP_CIPHER_CTX *ctx, const unsigned char *key,
55                              const unsigned char *iv, int enc);
56 /* Handles block of data in CBC mode */
57 static int magma_cipher_do_cbc(EVP_CIPHER_CTX *ctx, unsigned char *out,
58                                const unsigned char *in, size_t inl);
59 static int magma_cipher_do_ctr(EVP_CIPHER_CTX *ctx, unsigned char *out,
60                                const unsigned char *in, size_t inl);
61
62 static int magma_cipher_do_ctr_acpkm_omac(EVP_CIPHER_CTX *ctx, unsigned char *out,
63                                const unsigned char *in, size_t inl);
64
65 /* set/get cipher parameters */
66 static int magma_set_asn1_parameters(EVP_CIPHER_CTX *ctx, ASN1_TYPE *params);
67 static int magma_get_asn1_parameters(EVP_CIPHER_CTX *ctx, ASN1_TYPE *params);
68 /* Control function */
69 static int magma_cipher_ctl(EVP_CIPHER_CTX *ctx, int type, int arg, void *ptr);
70 static int magma_cipher_ctl_acpkm_omac(EVP_CIPHER_CTX *ctx, int type, int arg, void *ptr);
71
72 /*
73  * Single level template accessor.
74  * Note: that you cannot template 0 value.
75  */
76 #define TPL(st,field) ( \
77     ((st)->field) ?: TPL_VAL(st,field) \
78 )
79
80 #define TPL_VAL(st,field) ( \
81     ((st)->template ? (st)->template->field : 0) \
82 )
83
84 EVP_CIPHER *GOST_init_cipher(GOST_cipher *c)
85 {
86     if (c->cipher)
87         return c->cipher;
88
89     /* Some sanity checking. */
90     int flags = c->flags | TPL_VAL(c, flags);
91     int block_size = TPL(c, block_size);
92     switch (flags & EVP_CIPH_MODE) {
93     case EVP_CIPH_CTR_MODE:
94     case EVP_CIPH_CFB_MODE:
95     case EVP_CIPH_OFB_MODE:
96         OPENSSL_assert(block_size == 1);
97         OPENSSL_assert(flags & EVP_CIPH_NO_PADDING);
98         break;
99     default:
100         OPENSSL_assert(block_size != 1);
101         OPENSSL_assert(!(flags & EVP_CIPH_NO_PADDING));
102     }
103
104     if (TPL(c, iv_len))
105         OPENSSL_assert(flags & EVP_CIPH_CUSTOM_IV);
106     else
107         OPENSSL_assert(!(flags & EVP_CIPH_CUSTOM_IV));
108
109     EVP_CIPHER *cipher;
110     if (!(cipher = EVP_CIPHER_meth_new(c->nid, block_size, TPL(c, key_len)))
111         || !EVP_CIPHER_meth_set_iv_length(cipher, TPL(c, iv_len))
112         || !EVP_CIPHER_meth_set_flags(cipher, flags)
113         || !EVP_CIPHER_meth_set_init(cipher, TPL(c, init))
114         || !EVP_CIPHER_meth_set_do_cipher(cipher, TPL(c, do_cipher))
115         || !EVP_CIPHER_meth_set_cleanup(cipher, TPL(c, cleanup))
116         || !EVP_CIPHER_meth_set_impl_ctx_size(cipher, TPL(c, ctx_size))
117         || !EVP_CIPHER_meth_set_set_asn1_params(cipher, TPL(c, set_asn1_parameters))
118         || !EVP_CIPHER_meth_set_get_asn1_params(cipher, TPL(c, get_asn1_parameters))
119         || !EVP_CIPHER_meth_set_ctrl(cipher, TPL(c, ctrl))) {
120         EVP_CIPHER_meth_free(cipher);
121         cipher = NULL;
122     }
123     c->cipher = cipher;
124     return c->cipher;
125 }
126
127 void GOST_deinit_cipher(GOST_cipher *c)
128 {
129     if (c->cipher) {
130         EVP_CIPHER_meth_free(c->cipher);
131         c->cipher = NULL;
132     }
133 }
134
135 static GOST_cipher gost_template_cipher = {
136     .block_size = 8,
137     .key_len = 32,
138     .iv_len = 8,
139     .flags = EVP_CIPH_CUSTOM_IV |
140         EVP_CIPH_RAND_KEY |
141         EVP_CIPH_ALWAYS_CALL_INIT,
142     .cleanup = gost_cipher_cleanup,
143     .ctx_size = sizeof(struct ossl_gost_cipher_ctx),
144     .set_asn1_parameters = gost89_set_asn1_parameters,
145     .get_asn1_parameters = gost89_get_asn1_parameters,
146     .ctrl = gost_cipher_ctl,
147 };
148
149 GOST_cipher Gost28147_89_cipher = {
150     .nid = NID_id_Gost28147_89,
151     .template = &gost_template_cipher,
152     .block_size = 1,
153     .flags = EVP_CIPH_CFB_MODE |
154         EVP_CIPH_NO_PADDING,
155     .init = gost_cipher_init,
156     .do_cipher = gost_cipher_do_cfb,
157 };
158
159 GOST_cipher Gost28147_89_cbc_cipher = {
160     .nid = NID_gost89_cbc,
161     .template = &gost_template_cipher,
162     .flags = EVP_CIPH_CBC_MODE,
163     .init = gost_cipher_init_cbc,
164     .do_cipher = gost_cipher_do_cbc,
165 };
166
167 GOST_cipher Gost28147_89_cnt_cipher = {
168     .nid = NID_gost89_cnt,
169     .template = &gost_template_cipher,
170     .block_size = 1,
171     .flags = EVP_CIPH_OFB_MODE |
172         EVP_CIPH_NO_PADDING,
173     .init = gost_cipher_init_cpa,
174     .do_cipher = gost_cipher_do_cnt,
175 };
176
177 GOST_cipher Gost28147_89_cnt_12_cipher = {
178     .nid = NID_gost89_cnt_12,
179     .template = &gost_template_cipher,
180     .block_size = 1,
181     .flags = EVP_CIPH_OFB_MODE |
182         EVP_CIPH_NO_PADDING,
183     .init = gost_cipher_init_cp_12,
184     .do_cipher = gost_cipher_do_cnt,
185 };
186
187 static GOST_cipher magma_template_cipher = {
188     .block_size = 8,
189     .key_len = 32,
190     .iv_len = 8,
191     .flags = EVP_CIPH_CUSTOM_IV |
192         EVP_CIPH_RAND_KEY |
193         EVP_CIPH_ALWAYS_CALL_INIT,
194     .cleanup = gost_cipher_cleanup,
195     .ctx_size = sizeof(struct ossl_gost_cipher_ctx),
196     .set_asn1_parameters = magma_set_asn1_parameters,
197     .get_asn1_parameters = magma_get_asn1_parameters,
198     .do_cipher = magma_cipher_do_ctr,
199     .ctrl = magma_cipher_ctl,
200 };
201
202 GOST_cipher magma_ctr_cipher = {
203     .nid = NID_magma_ctr,
204     .template = &magma_template_cipher,
205     .block_size = 1,
206     .iv_len = 4,
207     .flags = EVP_CIPH_CTR_MODE |
208         EVP_CIPH_NO_PADDING,
209     .init = magma_cipher_init,
210 };
211
212 GOST_cipher magma_ctr_acpkm_cipher = {
213     .nid = NID_magma_ctr_acpkm,
214     .template = &magma_template_cipher,
215     .block_size = 1,
216     .iv_len = 4,
217     .flags = EVP_CIPH_CTR_MODE |
218         EVP_CIPH_NO_PADDING,
219     .init = magma_cipher_init,
220 };
221
222 GOST_cipher magma_ctr_acpkm_omac_cipher = {
223     .nid = NID_magma_ctr_acpkm_omac,
224     .template = &magma_template_cipher,
225     .block_size = 1,
226     .iv_len = 4,
227     .flags = EVP_CIPH_CTR_MODE |
228         EVP_CIPH_NO_PADDING |
229         EVP_CIPH_CUSTOM_COPY |
230         EVP_CIPH_FLAG_CUSTOM_CIPHER |
231         EVP_CIPH_FLAG_CIPHER_WITH_MAC,
232     .init = magma_cipher_init_ctr_acpkm_omac,
233     .do_cipher = magma_cipher_do_ctr_acpkm_omac,
234     .ctrl = magma_cipher_ctl_acpkm_omac,
235 };
236
237 GOST_cipher magma_cbc_cipher = {
238     .nid = NID_magma_cbc,
239     .template = &gost_template_cipher,
240     .flags = EVP_CIPH_CBC_MODE,
241     .init = magma_cipher_init,
242     .do_cipher = magma_cipher_do_cbc,
243 };
244
245 /* Implementation of GOST 28147-89 in MAC (imitovstavka) mode */
246 /* Init functions which set specific parameters */
247 static int gost_imit_init_cpa(EVP_MD_CTX *ctx);
248 static int gost_imit_init_cp_12(EVP_MD_CTX *ctx);
249 /* process block of data */
250 static int gost_imit_update(EVP_MD_CTX *ctx, const void *data, size_t count);
251 /* Return computed value */
252 static int gost_imit_final(EVP_MD_CTX *ctx, unsigned char *md);
253 /* Copies context */
254 static int gost_imit_copy(EVP_MD_CTX *to, const EVP_MD_CTX *from);
255 static int gost_imit_cleanup(EVP_MD_CTX *ctx);
256 /* Control function, knows how to set MAC key.*/
257 static int gost_imit_ctrl(EVP_MD_CTX *ctx, int type, int arg, void *ptr);
258
259 GOST_digest Gost28147_89_MAC_digest = {
260     .nid = NID_id_Gost28147_89_MAC,
261     .result_size = 4,
262     .input_blocksize = 8,
263     .app_datasize = sizeof(struct ossl_gost_imit_ctx),
264     .flags = EVP_MD_FLAG_XOF,
265     .init = gost_imit_init_cpa,
266     .update = gost_imit_update,
267     .final = gost_imit_final,
268     .copy = gost_imit_copy,
269     .cleanup = gost_imit_cleanup,
270     .ctrl = gost_imit_ctrl,
271 };
272
273 GOST_digest Gost28147_89_mac_12_digest = {
274     .nid = NID_gost_mac_12,
275     .result_size = 4,
276     .input_blocksize = 8,
277     .app_datasize = sizeof(struct ossl_gost_imit_ctx),
278     .flags = EVP_MD_FLAG_XOF,
279     .init = gost_imit_init_cp_12,
280     .update = gost_imit_update,
281     .final = gost_imit_final,
282     .copy = gost_imit_copy,
283     .cleanup = gost_imit_cleanup,
284     .ctrl = gost_imit_ctrl,
285 };
286
287 /*
288  * Correspondence between gost parameter OIDs and substitution blocks
289  * NID field is filed by register_gost_NID function in engine.c
290  * upon engine initialization
291  */
292
293 static struct gost_cipher_info gost_cipher_list[] = {
294     /*- NID *//*
295      * Subst block
296      *//*
297      * Key meshing
298      */
299     /*
300      * {NID_id_GostR3411_94_CryptoProParamSet,&GostR3411_94_CryptoProParamSet,0},
301      */
302     {NID_id_Gost28147_89_CryptoPro_A_ParamSet, &Gost28147_CryptoProParamSetA,
303      1},
304     {NID_id_Gost28147_89_CryptoPro_B_ParamSet, &Gost28147_CryptoProParamSetB,
305      1},
306     {NID_id_Gost28147_89_CryptoPro_C_ParamSet, &Gost28147_CryptoProParamSetC,
307      1},
308     {NID_id_Gost28147_89_CryptoPro_D_ParamSet, &Gost28147_CryptoProParamSetD,
309      1},
310     {NID_id_tc26_gost_28147_param_Z, &Gost28147_TC26ParamSetZ, 1},
311     {NID_id_Gost28147_89_TestParamSet, &Gost28147_TestParamSet, 1},
312     {NID_undef, NULL, 0}
313 };
314
315 /*
316  * get encryption parameters from crypto network settings FIXME For now we
317  * use environment var CRYPT_PARAMS as place to store these settings.
318  * Actually, it is better to use engine control command, read from
319  * configuration file to set them
320  */
321 const struct gost_cipher_info *get_encryption_params(ASN1_OBJECT *obj)
322 {
323     int nid;
324     struct gost_cipher_info *param;
325     if (!obj) {
326         const char *params = get_gost_engine_param(GOST_PARAM_CRYPT_PARAMS);
327         if (!params || !strlen(params)) {
328             int i;
329             for (i = 0; gost_cipher_list[i].nid != NID_undef; i++)
330                 if (gost_cipher_list[i].nid == NID_id_tc26_gost_28147_param_Z)
331                     return &gost_cipher_list[i];
332             return &gost_cipher_list[0];
333         }
334
335         nid = OBJ_txt2nid(params);
336         if (nid == NID_undef) {
337             GOSTerr(GOST_F_GET_ENCRYPTION_PARAMS,
338                     GOST_R_INVALID_CIPHER_PARAM_OID);
339             ERR_add_error_data(3, "Unsupported CRYPT_PARAMS='",
340                 params, "' specified in environment or in config");
341             return NULL;
342         }
343     } else {
344         nid = OBJ_obj2nid(obj);
345     }
346     for (param = gost_cipher_list; param->sblock != NULL && param->nid != nid;
347          param++) ;
348     if (!param->sblock) {
349         GOSTerr(GOST_F_GET_ENCRYPTION_PARAMS, GOST_R_INVALID_CIPHER_PARAMS);
350         return NULL;
351     }
352     return param;
353 }
354
355 /* Sets cipher param from paramset NID. */
356 static int gost_cipher_set_param(struct ossl_gost_cipher_ctx *c, int nid)
357 {
358     const struct gost_cipher_info *param;
359     param = get_encryption_params((nid == NID_undef ? NULL : OBJ_nid2obj(nid)));
360     if (!param)
361         return 0;
362
363     c->paramNID = param->nid;
364     c->key_meshing = param->key_meshing;
365     c->count = 0;
366     gost_init(&(c->cctx), param->sblock);
367     return 1;
368 }
369
370 /* Initializes EVP_CIPHER_CTX by paramset NID */
371 static int gost_cipher_init_param(EVP_CIPHER_CTX *ctx,
372                                   const unsigned char *key,
373                                   const unsigned char *iv, int enc,
374                                   int paramNID, int mode)
375 {
376     struct ossl_gost_cipher_ctx *c = EVP_CIPHER_CTX_get_cipher_data(ctx);
377     if (EVP_CIPHER_CTX_get_app_data(ctx) == NULL) {
378         if (!gost_cipher_set_param(c, paramNID))
379             return 0;
380         EVP_CIPHER_CTX_set_app_data(ctx, EVP_CIPHER_CTX_get_cipher_data(ctx));
381     }
382     if (key)
383         gost_key(&(c->cctx), key);
384     if (iv) {
385         memcpy((unsigned char *)EVP_CIPHER_CTX_original_iv(ctx), iv,
386                EVP_CIPHER_CTX_iv_length(ctx));
387     }
388     memcpy(EVP_CIPHER_CTX_iv_noconst(ctx),
389            EVP_CIPHER_CTX_original_iv(ctx), EVP_CIPHER_CTX_iv_length(ctx));
390     return 1;
391 }
392
393 static int gost_cipher_init_cnt(EVP_CIPHER_CTX *ctx,
394                                 const unsigned char *key,
395                                 const unsigned char *iv,
396                                 gost_subst_block * block)
397 {
398     struct ossl_gost_cipher_ctx *c = EVP_CIPHER_CTX_get_cipher_data(ctx);
399     gost_init(&(c->cctx), block);
400     c->key_meshing = 1;
401     c->count = 0;
402     if (key)
403         gost_key(&(c->cctx), key);
404     if (iv) {
405         memcpy((unsigned char *)EVP_CIPHER_CTX_original_iv(ctx), iv,
406                EVP_CIPHER_CTX_iv_length(ctx));
407     }
408     memcpy(EVP_CIPHER_CTX_iv_noconst(ctx),
409            EVP_CIPHER_CTX_original_iv(ctx), EVP_CIPHER_CTX_iv_length(ctx));
410     return 1;
411 }
412
413 static int gost_cipher_init_cpa(EVP_CIPHER_CTX *ctx, const unsigned char *key,
414                                 const unsigned char *iv, int enc)
415 {
416     return gost_cipher_init_cnt(ctx, key, iv, &Gost28147_CryptoProParamSetA);
417 }
418
419 static int gost_cipher_init_cp_12(EVP_CIPHER_CTX *ctx,
420                                   const unsigned char *key,
421                                   const unsigned char *iv, int enc)
422 {
423     return gost_cipher_init_cnt(ctx, key, iv, &Gost28147_TC26ParamSetZ);
424 }
425
426 /* Initializes EVP_CIPHER_CTX with default values */
427 static int gost_cipher_init(EVP_CIPHER_CTX *ctx, const unsigned char *key,
428                      const unsigned char *iv, int enc)
429 {
430     return gost_cipher_init_param(ctx, key, iv, enc, NID_undef,
431                                   EVP_CIPH_CFB_MODE);
432 }
433
434 /* Initializes EVP_CIPHER_CTX with default values */
435 static int gost_cipher_init_cbc(EVP_CIPHER_CTX *ctx, const unsigned char *key,
436                          const unsigned char *iv, int enc)
437 {
438     return gost_cipher_init_param(ctx, key, iv, enc, NID_undef,
439                                   EVP_CIPH_CBC_MODE);
440 }
441
442 /* Initializes EVP_CIPHER_CTX with default values */
443 static int magma_cipher_init(EVP_CIPHER_CTX *ctx, const unsigned char *key,
444                       const unsigned char *iv, int enc)
445 {
446     struct ossl_gost_cipher_ctx *c = EVP_CIPHER_CTX_get_cipher_data(ctx);
447     /* FIXME this is just initializtion check */
448     if (EVP_CIPHER_CTX_get_app_data(ctx) == NULL) {
449         if (!gost_cipher_set_param(c, NID_id_tc26_gost_28147_param_Z))
450             return 0;
451         EVP_CIPHER_CTX_set_app_data(ctx, EVP_CIPHER_CTX_get_cipher_data(ctx));
452
453         if (enc) {
454             if (init_zero_kdf_seed(c->kdf_seed) == 0)
455                 return -1;
456         }
457     }
458
459     if (key)
460         magma_key(&(c->cctx), key);
461     if (iv) {
462         memcpy((unsigned char *)EVP_CIPHER_CTX_original_iv(ctx), iv,
463                EVP_CIPHER_CTX_iv_length(ctx));
464     }
465     memcpy(EVP_CIPHER_CTX_iv_noconst(ctx),
466            EVP_CIPHER_CTX_original_iv(ctx), EVP_CIPHER_CTX_iv_length(ctx));
467
468     if (EVP_CIPHER_CTX_nid(ctx) == NID_magma_ctr_acpkm
469      || EVP_CIPHER_CTX_nid(ctx) == NID_magma_ctr_acpkm_omac) {
470        c->key_meshing = 1024;
471     } else {
472        c->key_meshing = 0;
473     }
474
475     return 1;
476 }
477
478 /* Initializes EVP_CIPHER_CTX with default values */
479 static int magma_cipher_init_ctr_acpkm_omac(EVP_CIPHER_CTX *ctx, const unsigned char *key,
480                       const unsigned char *iv, int enc)
481 {
482         if (key) {
483     struct ossl_gost_cipher_ctx *c = EVP_CIPHER_CTX_get_cipher_data(ctx);
484                 unsigned char cipher_key[32];
485                 c->omac_ctx = EVP_MD_CTX_new();
486
487                 if (c->omac_ctx == NULL) {
488                     GOSTerr(GOST_F_MAGMA_CIPHER_INIT_CTR_ACPKM_OMAC, ERR_R_MALLOC_FAILURE);
489                                 return 0;
490                 }
491
492                 if (gost2015_acpkm_omac_init(NID_magma_mac, enc, key,
493                                  c->omac_ctx, cipher_key, c->kdf_seed) != 1) {
494                     EVP_MD_CTX_free(c->omac_ctx);
495                                 c->omac_ctx = NULL;
496                     return 0;
497                 }
498
499                 return magma_cipher_init(ctx, cipher_key, iv, enc);
500         }
501
502         return magma_cipher_init(ctx, key, iv, enc);
503 }
504
505 /*
506  * Wrapper around gostcrypt function from gost89.c which perform key meshing
507  * when nesseccary
508  */
509 static void gost_crypt_mesh(void *ctx, unsigned char *iv, unsigned char *buf)
510 {
511     struct ossl_gost_cipher_ctx *c = ctx;
512     assert(c->count % 8 == 0 && c->count <= 1024);
513     if (c->key_meshing && c->count == 1024) {
514         cryptopro_key_meshing(&(c->cctx), iv);
515     }
516     gostcrypt(&(c->cctx), iv, buf);
517     c->count = c->count % 1024 + 8;
518 }
519
520 static void gost_cnt_next(void *ctx, unsigned char *iv, unsigned char *buf)
521 {
522     struct ossl_gost_cipher_ctx *c = ctx;
523     word32 g, go;
524     unsigned char buf1[8];
525     assert(c->count % 8 == 0 && c->count <= 1024);
526     if (c->key_meshing && c->count == 1024) {
527         cryptopro_key_meshing(&(c->cctx), iv);
528     }
529     if (c->count == 0) {
530         gostcrypt(&(c->cctx), iv, buf1);
531     } else {
532         memcpy(buf1, iv, 8);
533     }
534     g = buf1[0] | (buf1[1] << 8) | (buf1[2] << 16) | ((word32) buf1[3] << 24);
535     g += 0x01010101;
536     buf1[0] = (unsigned char)(g & 0xff);
537     buf1[1] = (unsigned char)((g >> 8) & 0xff);
538     buf1[2] = (unsigned char)((g >> 16) & 0xff);
539     buf1[3] = (unsigned char)((g >> 24) & 0xff);
540     g = buf1[4] | (buf1[5] << 8) | (buf1[6] << 16) | ((word32) buf1[7] << 24);
541     go = g;
542     g += 0x01010104;
543     if (go > g)                 /* overflow */
544         g++;
545     buf1[4] = (unsigned char)(g & 0xff);
546     buf1[5] = (unsigned char)((g >> 8) & 0xff);
547     buf1[6] = (unsigned char)((g >> 16) & 0xff);
548     buf1[7] = (unsigned char)((g >> 24) & 0xff);
549     memcpy(iv, buf1, 8);
550     gostcrypt(&(c->cctx), buf1, buf);
551     c->count = c->count % 1024 + 8;
552 }
553
554 /* GOST encryption in CBC mode */
555 static int gost_cipher_do_cbc(EVP_CIPHER_CTX *ctx, unsigned char *out,
556                        const unsigned char *in, size_t inl)
557 {
558     unsigned char b[8];
559     const unsigned char *in_ptr = in;
560     unsigned char *out_ptr = out;
561     int i;
562     struct ossl_gost_cipher_ctx *c = EVP_CIPHER_CTX_get_cipher_data(ctx);
563     unsigned char *iv = EVP_CIPHER_CTX_iv_noconst(ctx);
564     if (EVP_CIPHER_CTX_encrypting(ctx)) {
565         while (inl > 0) {
566
567             for (i = 0; i < 8; i++) {
568                 b[i] = iv[i] ^ in_ptr[i];
569             }
570             gostcrypt(&(c->cctx), b, out_ptr);
571             memcpy(iv, out_ptr, 8);
572             out_ptr += 8;
573             in_ptr += 8;
574             inl -= 8;
575         }
576     } else {
577         while (inl > 0) {
578             unsigned char tmpiv[8];
579             gostdecrypt(&(c->cctx), in_ptr, b);
580             memcpy(tmpiv, in_ptr, 8);
581             for (i = 0; i < 8; i++) {
582                 out_ptr[i] = iv[i] ^ b[i];
583             }
584             memcpy(iv, tmpiv, 8);
585             out_ptr += 8;
586             in_ptr += 8;
587             inl -= 8;
588         }
589     }
590     return 1;
591 }
592
593 /* MAGMA encryption in CBC mode */
594 static int magma_cipher_do_cbc(EVP_CIPHER_CTX *ctx, unsigned char *out,
595                         const unsigned char *in, size_t inl)
596 {
597     unsigned char b[8];
598     unsigned char d[8];
599     const unsigned char *in_ptr = in;
600     unsigned char *out_ptr = out;
601     int i;
602     struct ossl_gost_cipher_ctx *c = EVP_CIPHER_CTX_get_cipher_data(ctx);
603     unsigned char *iv = EVP_CIPHER_CTX_iv_noconst(ctx);
604     if (EVP_CIPHER_CTX_encrypting(ctx)) {
605         while (inl > 0) {
606
607             for (i = 0; i < 8; i++) {
608                 b[7 - i] = iv[i] ^ in_ptr[i];
609             }
610             gostcrypt(&(c->cctx), b, d);
611
612             for (i = 0; i < 8; i++) {
613                 out_ptr[7 - i] = d[i];
614             }
615             memcpy(iv, out_ptr, 8);
616             out_ptr += 8;
617             in_ptr += 8;
618             inl -= 8;
619         }
620     } else {
621         while (inl > 0) {
622             for (i = 0; i < 8; i++) {
623                 d[7 - i] = in_ptr[i];
624             }
625             gostdecrypt(&(c->cctx), d, b);
626             memcpy(d, in_ptr, 8);
627             for (i = 0; i < 8; i++) {
628                 out_ptr[i] = iv[i] ^ b[7 - i];
629             }
630             memcpy(iv, d, 8);
631             out_ptr += 8;
632             in_ptr += 8;
633             inl -= 8;
634         }
635     }
636     return 1;
637 }
638
639 /* increment counter (64-bit int) by 1 */
640 static void ctr64_inc(unsigned char *counter)
641 {
642     inc_counter(counter, 8);
643 }
644
645 /* MAGMA encryption in CTR mode */
646 static int magma_cipher_do_ctr(EVP_CIPHER_CTX *ctx, unsigned char *out,
647                                const unsigned char *in, size_t inl)
648 {
649     const unsigned char *in_ptr = in;
650     unsigned char *out_ptr = out;
651     size_t i = 0;
652     size_t j;
653     struct ossl_gost_cipher_ctx *c = EVP_CIPHER_CTX_get_cipher_data(ctx);
654     unsigned char *buf = EVP_CIPHER_CTX_buf_noconst(ctx);
655     unsigned char *iv = EVP_CIPHER_CTX_iv_noconst(ctx);
656     unsigned char b[8];
657 /* Process partial blocks */
658     if (EVP_CIPHER_CTX_num(ctx)) {
659         for (j = EVP_CIPHER_CTX_num(ctx), i = 0; j < 8 && i < inl;
660              j++, i++, in_ptr++, out_ptr++) {
661             *out_ptr = buf[7 - j] ^ (*in_ptr);
662         }
663         if (j == 8) {
664             EVP_CIPHER_CTX_set_num(ctx, 0);
665         } else {
666             EVP_CIPHER_CTX_set_num(ctx, j);
667             return inl;
668         }
669     }
670
671 /* Process full blocks */
672     for (; i + 8 <= inl; i += 8, in_ptr += 8, out_ptr += 8) {
673         for (j = 0; j < 8; j++) {
674             b[7 - j] = iv[j];
675         }
676         gostcrypt(&(c->cctx), b, buf);
677         for (j = 0; j < 8; j++) {
678             out_ptr[j] = buf[7 - j] ^ in_ptr[j];
679         }
680         ctr64_inc(iv);
681         c->count += 8;
682         if (c->key_meshing && (c->count % c->key_meshing == 0))
683             acpkm_magma_key_meshing(&(c->cctx));
684     }
685
686 /* Process the rest of plaintext */
687     if (i < inl) {
688         for (j = 0; j < 8; j++) {
689             b[7 - j] = iv[j];
690         }
691         gostcrypt(&(c->cctx), b, buf);
692
693         for (j = 0; i < inl; j++, i++) {
694             out_ptr[j] = buf[7 - j] ^ in_ptr[j];
695         }
696
697         ctr64_inc(iv);
698         c->count += 8;
699         if (c->key_meshing && (c->count % c->key_meshing == 0))
700             acpkm_magma_key_meshing(&(c->cctx));
701
702         EVP_CIPHER_CTX_set_num(ctx, j);
703     } else {
704         EVP_CIPHER_CTX_set_num(ctx, 0);
705     }
706
707     return inl;
708 }
709
710 /* MAGMA encryption in CTR mode */
711 static int magma_cipher_do_ctr_acpkm_omac(EVP_CIPHER_CTX *ctx, unsigned char *out,
712                                const unsigned char *in, size_t inl)
713 {
714   struct ossl_gost_cipher_ctx *c = EVP_CIPHER_CTX_get_cipher_data(ctx);
715
716         if (in == NULL && inl == 0) /* Final call */
717                 return gost2015_final_call(ctx, c->omac_ctx, MAGMA_MAC_MAX_SIZE, c->tag, magma_cipher_do_ctr);
718
719   if (in == NULL)
720       return -1;
721
722         /* As in and out can be the same pointer, process unencrypted here */
723         if (EVP_CIPHER_CTX_encrypting(ctx))
724                 EVP_DigestSignUpdate(c->omac_ctx, in, inl);
725
726   if (magma_cipher_do_ctr(ctx, out, in, inl) != inl)
727       return -1;
728
729         /* As in and out can be the same pointer, process decrypted here */
730         if (!EVP_CIPHER_CTX_encrypting(ctx))
731                 EVP_DigestSignUpdate(c->omac_ctx, out, inl);
732
733         return inl;
734 }
735 /* GOST encryption in CFB mode */
736 static int gost_cipher_do_cfb(EVP_CIPHER_CTX *ctx, unsigned char *out,
737                        const unsigned char *in, size_t inl)
738 {
739     const unsigned char *in_ptr = in;
740     unsigned char *out_ptr = out;
741     size_t i = 0;
742     size_t j = 0;
743     unsigned char *buf = EVP_CIPHER_CTX_buf_noconst(ctx);
744     unsigned char *iv = EVP_CIPHER_CTX_iv_noconst(ctx);
745 /* process partial block if any */
746     if (EVP_CIPHER_CTX_num(ctx)) {
747         for (j = EVP_CIPHER_CTX_num(ctx), i = 0; j < 8 && i < inl;
748              j++, i++, in_ptr++, out_ptr++) {
749             if (!EVP_CIPHER_CTX_encrypting(ctx))
750                 buf[j + 8] = *in_ptr;
751             *out_ptr = buf[j] ^ (*in_ptr);
752             if (EVP_CIPHER_CTX_encrypting(ctx))
753                 buf[j + 8] = *out_ptr;
754         }
755         if (j == 8) {
756             memcpy(iv, buf + 8, 8);
757             EVP_CIPHER_CTX_set_num(ctx, 0);
758         } else {
759             EVP_CIPHER_CTX_set_num(ctx, j);
760             return 1;
761         }
762     }
763
764     for (; i + 8 < inl; i += 8, in_ptr += 8, out_ptr += 8) {
765         /*
766          * block cipher current iv
767          */
768         gost_crypt_mesh(EVP_CIPHER_CTX_get_cipher_data(ctx), iv, buf);
769         /*
770          * xor next block of input text with it and output it
771          */
772         /*
773          * output this block
774          */
775         if (!EVP_CIPHER_CTX_encrypting(ctx))
776             memcpy(iv, in_ptr, 8);
777         for (j = 0; j < 8; j++) {
778             out_ptr[j] = buf[j] ^ in_ptr[j];
779         }
780         /* Encrypt */
781         /* Next iv is next block of cipher text */
782         if (EVP_CIPHER_CTX_encrypting(ctx))
783             memcpy(iv, out_ptr, 8);
784     }
785 /* Process rest of buffer */
786     if (i < inl) {
787         gost_crypt_mesh(EVP_CIPHER_CTX_get_cipher_data(ctx), iv, buf);
788         if (!EVP_CIPHER_CTX_encrypting(ctx))
789             memcpy(buf + 8, in_ptr, inl - i);
790         for (j = 0; i < inl; j++, i++) {
791             out_ptr[j] = buf[j] ^ in_ptr[j];
792         }
793         EVP_CIPHER_CTX_set_num(ctx, j);
794         if (EVP_CIPHER_CTX_encrypting(ctx))
795             memcpy(buf + 8, out_ptr, j);
796     } else {
797         EVP_CIPHER_CTX_set_num(ctx, 0);
798     }
799     return 1;
800 }
801
802 static int gost_cipher_do_cnt(EVP_CIPHER_CTX *ctx, unsigned char *out,
803                               const unsigned char *in, size_t inl)
804 {
805     const unsigned char *in_ptr = in;
806     unsigned char *out_ptr = out;
807     size_t i = 0;
808     size_t j;
809     unsigned char *buf = EVP_CIPHER_CTX_buf_noconst(ctx);
810     unsigned char *iv = EVP_CIPHER_CTX_iv_noconst(ctx);
811 /* process partial block if any */
812     if (EVP_CIPHER_CTX_num(ctx)) {
813         for (j = EVP_CIPHER_CTX_num(ctx), i = 0; j < 8 && i < inl;
814              j++, i++, in_ptr++, out_ptr++) {
815             *out_ptr = buf[j] ^ (*in_ptr);
816         }
817         if (j == 8) {
818             EVP_CIPHER_CTX_set_num(ctx, 0);
819         } else {
820             EVP_CIPHER_CTX_set_num(ctx, j);
821             return 1;
822         }
823     }
824
825     for (; i + 8 < inl; i += 8, in_ptr += 8, out_ptr += 8) {
826         /*
827          * block cipher current iv
828          */
829         /* Encrypt */
830         gost_cnt_next(EVP_CIPHER_CTX_get_cipher_data(ctx), iv, buf);
831         /*
832          * xor next block of input text with it and output it
833          */
834         /*
835          * output this block
836          */
837         for (j = 0; j < 8; j++) {
838             out_ptr[j] = buf[j] ^ in_ptr[j];
839         }
840     }
841 /* Process rest of buffer */
842     if (i < inl) {
843         gost_cnt_next(EVP_CIPHER_CTX_get_cipher_data(ctx), iv, buf);
844         for (j = 0; i < inl; j++, i++) {
845             out_ptr[j] = buf[j] ^ in_ptr[j];
846         }
847         EVP_CIPHER_CTX_set_num(ctx, j);
848     } else {
849         EVP_CIPHER_CTX_set_num(ctx, 0);
850     }
851     return 1;
852 }
853
854 /* Cleaning up of EVP_CIPHER_CTX */
855 static int gost_cipher_cleanup(EVP_CIPHER_CTX *ctx)
856 {
857     struct ossl_gost_cipher_ctx *c = EVP_CIPHER_CTX_get_cipher_data(ctx);
858                 EVP_MD_CTX_free(c->omac_ctx);
859     gost_destroy(&(c->cctx));
860     EVP_CIPHER_CTX_set_app_data(ctx, NULL);
861     return 1;
862 }
863
864 /* Control function for gost cipher */
865 static int gost_cipher_ctl(EVP_CIPHER_CTX *ctx, int type, int arg, void *ptr)
866 {
867     switch (type) {
868     case EVP_CTRL_RAND_KEY:
869         {
870             if (RAND_priv_bytes
871                 ((unsigned char *)ptr, EVP_CIPHER_CTX_key_length(ctx)) <= 0) {
872                 GOSTerr(GOST_F_GOST_CIPHER_CTL, GOST_R_RNG_ERROR);
873                 return -1;
874             }
875             break;
876         }
877     case EVP_CTRL_PBE_PRF_NID:
878         if (ptr) {
879             const char *params = get_gost_engine_param(GOST_PARAM_PBE_PARAMS);
880             int nid = NID_id_tc26_hmac_gost_3411_2012_512;
881
882             if (params) {
883                 if (!strcmp("md_gost12_256", params))
884                     nid = NID_id_tc26_hmac_gost_3411_2012_256;
885                 else if (!strcmp("md_gost12_512", params))
886                     nid = NID_id_tc26_hmac_gost_3411_2012_512;
887                 else if (!strcmp("md_gost94", params))
888                     nid = NID_id_HMACGostR3411_94;
889             }
890             *((int *)ptr) = nid;
891             return 1;
892         } else {
893             return 0;
894         }
895
896     case EVP_CTRL_SET_SBOX:
897         if (ptr) {
898             struct ossl_gost_cipher_ctx *c =
899                 EVP_CIPHER_CTX_get_cipher_data(ctx);
900             int nid;
901             int cur_meshing;
902             int ret;
903
904             if (c == NULL) {
905                 return -1;
906             }
907
908             if (c->count != 0) {
909                 return -1;
910             }
911
912             nid = OBJ_txt2nid(ptr);
913             if (nid == NID_undef) {
914                 return 0;
915             }
916
917             cur_meshing = c->key_meshing;
918             ret = gost_cipher_set_param(c, nid);
919             c->key_meshing = cur_meshing;
920             return ret;
921         } else {
922             return 0;
923         }
924     case EVP_CTRL_KEY_MESH:
925         {
926             struct ossl_gost_cipher_ctx *c =
927                 EVP_CIPHER_CTX_get_cipher_data(ctx);
928
929             if (c == NULL) {
930                 return -1;
931             }
932
933             if (c->count != 0) {
934                 return -1;
935             }
936
937             c->key_meshing = arg;
938             return 1;
939         }
940     default:
941         GOSTerr(GOST_F_GOST_CIPHER_CTL, GOST_R_UNSUPPORTED_CIPHER_CTL_COMMAND);
942         return -1;
943     }
944     return 1;
945 }
946
947 /* Control function for gost cipher */
948 static int magma_cipher_ctl(EVP_CIPHER_CTX *ctx, int type, int arg, void *ptr)
949 {
950     switch (type) {
951     case EVP_CTRL_RAND_KEY:
952             if (RAND_priv_bytes
953                 ((unsigned char *)ptr, EVP_CIPHER_CTX_key_length(ctx)) <= 0) {
954                 GOSTerr(GOST_F_GOST_CIPHER_CTL, GOST_R_RNG_ERROR);
955                 return -1;
956             }
957             break;
958     case EVP_CTRL_KEY_MESH:
959         {
960             struct ossl_gost_cipher_ctx *c =
961                 EVP_CIPHER_CTX_get_cipher_data(ctx);
962
963             if (c == NULL) {
964                 return -1;
965             }
966
967             if (c->count != 0) {
968                 return -1;
969             }
970
971             c->key_meshing = arg;
972             return 1;
973         }
974     default:
975         GOSTerr(GOST_F_MAGMA_CIPHER_CTL, GOST_R_UNSUPPORTED_CIPHER_CTL_COMMAND);
976         return -1;
977     }
978     return 1;
979 }
980
981 static int magma_cipher_ctl_acpkm_omac(EVP_CIPHER_CTX *ctx, int type, int arg, void *ptr)
982 {
983         switch (type)
984         {
985                 case EVP_CTRL_PROCESS_UNPROTECTED:
986                 {
987                         struct ossl_gost_cipher_ctx *c = EVP_CIPHER_CTX_get_cipher_data(ctx);
988                         STACK_OF(X509_ATTRIBUTE) *x = ptr;
989       return gost2015_process_unprotected_attributes(x, arg, MAGMA_MAC_MAX_SIZE, c->tag);
990                 }
991     case EVP_CTRL_COPY: {
992                         EVP_CIPHER_CTX *out = ptr;
993       struct ossl_gost_cipher_ctx *in_cctx  = EVP_CIPHER_CTX_get_cipher_data(ctx);
994       struct ossl_gost_cipher_ctx *out_cctx = EVP_CIPHER_CTX_get_cipher_data(out);
995
996                         if (in_cctx->omac_ctx == out_cctx->omac_ctx) {
997                                 out_cctx->omac_ctx = EVP_MD_CTX_new();
998                                 if (out_cctx->omac_ctx == NULL) {
999                                         GOSTerr(GOST_F_MAGMA_CIPHER_CTL_ACPKM_OMAC, ERR_R_MALLOC_FAILURE);
1000                                         return -1;
1001                                 }
1002                         }
1003                         return EVP_MD_CTX_copy(out_cctx->omac_ctx, in_cctx->omac_ctx);
1004                 }
1005                 default:
1006                         return magma_cipher_ctl(ctx, type, arg, ptr);
1007                         break;
1008         }
1009 }
1010
1011 /* Set cipher parameters from ASN1 structure */
1012 static int gost89_set_asn1_parameters(EVP_CIPHER_CTX *ctx, ASN1_TYPE *params)
1013 {
1014     int len = 0;
1015     unsigned char *buf = NULL;
1016     unsigned char *p = NULL;
1017     struct ossl_gost_cipher_ctx *c = EVP_CIPHER_CTX_get_cipher_data(ctx);
1018     GOST_CIPHER_PARAMS *gcp = GOST_CIPHER_PARAMS_new();
1019     ASN1_OCTET_STRING *os = NULL;
1020     if (!gcp) {
1021         GOSTerr(GOST_F_GOST89_SET_ASN1_PARAMETERS, ERR_R_MALLOC_FAILURE);
1022         return 0;
1023     }
1024     if (!ASN1_OCTET_STRING_set
1025         (gcp->iv, EVP_CIPHER_CTX_iv(ctx), EVP_CIPHER_CTX_iv_length(ctx))) {
1026         GOST_CIPHER_PARAMS_free(gcp);
1027         GOSTerr(GOST_F_GOST89_SET_ASN1_PARAMETERS, ERR_R_MALLOC_FAILURE);
1028         return 0;
1029     }
1030     ASN1_OBJECT_free(gcp->enc_param_set);
1031     gcp->enc_param_set = OBJ_nid2obj(c->paramNID);
1032
1033     len = i2d_GOST_CIPHER_PARAMS(gcp, NULL);
1034     p = buf = OPENSSL_malloc(len);
1035     if (!buf) {
1036         GOST_CIPHER_PARAMS_free(gcp);
1037         GOSTerr(GOST_F_GOST89_SET_ASN1_PARAMETERS, ERR_R_MALLOC_FAILURE);
1038         return 0;
1039     }
1040     i2d_GOST_CIPHER_PARAMS(gcp, &p);
1041     GOST_CIPHER_PARAMS_free(gcp);
1042
1043     os = ASN1_OCTET_STRING_new();
1044
1045     if (!os || !ASN1_OCTET_STRING_set(os, buf, len)) {
1046         OPENSSL_free(buf);
1047         GOSTerr(GOST_F_GOST89_SET_ASN1_PARAMETERS, ERR_R_MALLOC_FAILURE);
1048         return 0;
1049     }
1050     OPENSSL_free(buf);
1051
1052     ASN1_TYPE_set(params, V_ASN1_SEQUENCE, os);
1053     return 1;
1054 }
1055
1056 /* Store parameters into ASN1 structure */
1057 static int gost89_get_asn1_parameters(EVP_CIPHER_CTX *ctx, ASN1_TYPE *params)
1058 {
1059     int len;
1060     GOST_CIPHER_PARAMS *gcp = NULL;
1061     unsigned char *p;
1062     struct ossl_gost_cipher_ctx *c = EVP_CIPHER_CTX_get_cipher_data(ctx);
1063     int nid;
1064
1065     if (ASN1_TYPE_get(params) != V_ASN1_SEQUENCE) {
1066         return -1;
1067     }
1068
1069     p = params->value.sequence->data;
1070
1071     gcp = d2i_GOST_CIPHER_PARAMS(NULL, (const unsigned char **)&p,
1072                                  params->value.sequence->length);
1073
1074     len = gcp->iv->length;
1075     if (len != EVP_CIPHER_CTX_iv_length(ctx)) {
1076         GOST_CIPHER_PARAMS_free(gcp);
1077         GOSTerr(GOST_F_GOST89_GET_ASN1_PARAMETERS, GOST_R_INVALID_IV_LENGTH);
1078         return -1;
1079     }
1080
1081     nid = OBJ_obj2nid(gcp->enc_param_set);
1082     if (nid == NID_undef) {
1083         GOST_CIPHER_PARAMS_free(gcp);
1084         GOSTerr(GOST_F_GOST89_GET_ASN1_PARAMETERS,
1085                 GOST_R_INVALID_CIPHER_PARAM_OID);
1086         return -1;
1087     }
1088
1089     if (!gost_cipher_set_param(c, nid)) {
1090         GOST_CIPHER_PARAMS_free(gcp);
1091         return -1;
1092     }
1093     /*XXX missing non-const accessor */
1094     memcpy((unsigned char *)EVP_CIPHER_CTX_original_iv(ctx), gcp->iv->data,
1095            EVP_CIPHER_CTX_iv_length(ctx));
1096
1097     GOST_CIPHER_PARAMS_free(gcp);
1098
1099     return 1;
1100 }
1101
1102 #define MAGMA_UKM_LEN 12
1103 static int magma_set_asn1_parameters (EVP_CIPHER_CTX *ctx, ASN1_TYPE *params)
1104 {
1105   struct ossl_gost_cipher_ctx *c = EVP_CIPHER_CTX_get_cipher_data(ctx);
1106         c->key_meshing = 8192;
1107
1108         return gost2015_set_asn1_params(params, EVP_CIPHER_CTX_original_iv(ctx), 4,
1109                 c->kdf_seed);
1110 }
1111
1112 static int magma_get_asn1_parameters(EVP_CIPHER_CTX *ctx, ASN1_TYPE *params)
1113 {
1114   struct ossl_gost_cipher_ctx *c = EVP_CIPHER_CTX_get_cipher_data(ctx);
1115         unsigned char iv[16];
1116
1117         c->key_meshing = 8192;
1118
1119         if (gost2015_get_asn1_params(params, MAGMA_UKM_LEN, iv, 4, c->kdf_seed) < 0)
1120             return -1;
1121
1122         memcpy(EVP_CIPHER_CTX_iv_noconst(ctx), iv, sizeof(iv));
1123         memcpy((unsigned char *)EVP_CIPHER_CTX_original_iv(ctx), iv, sizeof(iv));
1124         /* Key meshing 8 kb*/
1125         c->key_meshing = 8192;
1126
1127         return 1;
1128 }
1129
1130 static int gost_imit_init(EVP_MD_CTX *ctx, gost_subst_block * block)
1131 {
1132     struct ossl_gost_imit_ctx *c = EVP_MD_CTX_md_data(ctx);
1133     memset(c->buffer, 0, sizeof(c->buffer));
1134     memset(c->partial_block, 0, sizeof(c->partial_block));
1135     c->count = 0;
1136     c->bytes_left = 0;
1137     c->key_meshing = 1;
1138     c->dgst_size = 4;
1139     gost_init(&(c->cctx), block);
1140     return 1;
1141 }
1142
1143 static int gost_imit_init_cpa(EVP_MD_CTX *ctx)
1144 {
1145     return gost_imit_init(ctx, &Gost28147_CryptoProParamSetA);
1146 }
1147
1148 static int gost_imit_init_cp_12(EVP_MD_CTX *ctx)
1149 {
1150     return gost_imit_init(ctx, &Gost28147_TC26ParamSetZ);
1151 }
1152
1153 static void mac_block_mesh(struct ossl_gost_imit_ctx *c,
1154                            const unsigned char *data)
1155 {
1156     /*
1157      * We are using NULL for iv because CryptoPro doesn't interpret
1158      * internal state of MAC algorithm as iv during keymeshing (but does
1159      * initialize internal state from iv in key transport
1160      */
1161     assert(c->count % 8 == 0 && c->count <= 1024);
1162     if (c->key_meshing && c->count == 1024) {
1163         cryptopro_key_meshing(&(c->cctx), NULL);
1164     }
1165     mac_block(&(c->cctx), c->buffer, data);
1166     c->count = c->count % 1024 + 8;
1167 }
1168
1169 static int gost_imit_update(EVP_MD_CTX *ctx, const void *data, size_t count)
1170 {
1171     struct ossl_gost_imit_ctx *c = EVP_MD_CTX_md_data(ctx);
1172     const unsigned char *p = data;
1173     size_t bytes = count;
1174     if (!(c->key_set)) {
1175         GOSTerr(GOST_F_GOST_IMIT_UPDATE, GOST_R_MAC_KEY_NOT_SET);
1176         return 0;
1177     }
1178     if (c->bytes_left) {
1179         size_t i;
1180         for (i = c->bytes_left; i < 8 && bytes > 0; bytes--, i++, p++) {
1181             c->partial_block[i] = *p;
1182         }
1183         if (i == 8) {
1184             mac_block_mesh(c, c->partial_block);
1185         } else {
1186             c->bytes_left = i;
1187             return 1;
1188         }
1189     }
1190     while (bytes > 8) {
1191         mac_block_mesh(c, p);
1192         p += 8;
1193         bytes -= 8;
1194     }
1195     if (bytes > 0) {
1196         memcpy(c->partial_block, p, bytes);
1197     }
1198     c->bytes_left = bytes;
1199     return 1;
1200 }
1201
1202 static int gost_imit_final(EVP_MD_CTX *ctx, unsigned char *md)
1203 {
1204     struct ossl_gost_imit_ctx *c = EVP_MD_CTX_md_data(ctx);
1205     if (!c->key_set) {
1206         GOSTerr(GOST_F_GOST_IMIT_FINAL, GOST_R_MAC_KEY_NOT_SET);
1207         return 0;
1208     }
1209     if (c->count == 0 && c->bytes_left) {
1210         unsigned char buffer[8];
1211         memset(buffer, 0, 8);
1212         gost_imit_update(ctx, buffer, 8);
1213     }
1214     if (c->bytes_left) {
1215         int i;
1216         for (i = c->bytes_left; i < 8; i++) {
1217             c->partial_block[i] = 0;
1218         }
1219         mac_block_mesh(c, c->partial_block);
1220     }
1221     get_mac(c->buffer, 8 * c->dgst_size, md);
1222     return 1;
1223 }
1224
1225 static int gost_imit_ctrl(EVP_MD_CTX *ctx, int type, int arg, void *ptr)
1226 {
1227     switch (type) {
1228     case EVP_MD_CTRL_KEY_LEN:
1229         *((unsigned int *)(ptr)) = 32;
1230         return 1;
1231     case EVP_MD_CTRL_SET_KEY:
1232         {
1233             struct ossl_gost_imit_ctx *gost_imit_ctx = EVP_MD_CTX_md_data(ctx);
1234
1235             if (EVP_MD_meth_get_init(EVP_MD_CTX_md(ctx)) (ctx) <= 0) {
1236                 GOSTerr(GOST_F_GOST_IMIT_CTRL, GOST_R_MAC_KEY_NOT_SET);
1237                 return 0;
1238             }
1239             EVP_MD_CTX_set_flags(ctx, EVP_MD_CTX_FLAG_NO_INIT);
1240
1241             if (arg == 0) {
1242                 struct gost_mac_key *key = (struct gost_mac_key *)ptr;
1243                 if (key->mac_param_nid != NID_undef) {
1244                     const struct gost_cipher_info *param =
1245                         get_encryption_params(OBJ_nid2obj(key->mac_param_nid));
1246                     if (param == NULL) {
1247                         GOSTerr(GOST_F_GOST_IMIT_CTRL,
1248                                 GOST_R_INVALID_MAC_PARAMS);
1249                         return 0;
1250                     }
1251                     gost_init(&(gost_imit_ctx->cctx), param->sblock);
1252                 }
1253                 gost_key(&(gost_imit_ctx->cctx), key->key);
1254                 gost_imit_ctx->key_set = 1;
1255
1256                 return 1;
1257             } else if (arg == 32) {
1258                 gost_key(&(gost_imit_ctx->cctx), ptr);
1259                 gost_imit_ctx->key_set = 1;
1260                 return 1;
1261             }
1262             GOSTerr(GOST_F_GOST_IMIT_CTRL, GOST_R_INVALID_MAC_KEY_SIZE);
1263             return 0;
1264         }
1265     case EVP_MD_CTRL_XOF_LEN:
1266         {
1267             struct ossl_gost_imit_ctx *c = EVP_MD_CTX_md_data(ctx);
1268             if (arg < 1 || arg > 8) {
1269                 GOSTerr(GOST_F_GOST_IMIT_CTRL, GOST_R_INVALID_MAC_SIZE);
1270                 return 0;
1271             }
1272             c->dgst_size = arg;
1273             return 1;
1274         }
1275
1276     default:
1277         return 0;
1278     }
1279 }
1280
1281 static int gost_imit_copy(EVP_MD_CTX *to, const EVP_MD_CTX *from)
1282 {
1283     if (EVP_MD_CTX_md_data(to) && EVP_MD_CTX_md_data(from)) {
1284         memcpy(EVP_MD_CTX_md_data(to), EVP_MD_CTX_md_data(from),
1285                sizeof(struct ossl_gost_imit_ctx));
1286     }
1287     return 1;
1288 }
1289
1290 /* Clean up imit ctx */
1291 static int gost_imit_cleanup(EVP_MD_CTX *ctx)
1292 {
1293     memset(EVP_MD_CTX_md_data(ctx), 0, sizeof(struct ossl_gost_imit_ctx));
1294     return 1;
1295 }
1296 /* vim: set expandtab cinoptions=\:0,l1,t0,g0,(0 sw=4 : */