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