]> www.wagner.pp.ru Git - openssl-gost/engine.git/blob - gost_grasshopper_cipher.c
Fixed in-place encryption for CTR and CTR-ACPKM modes
[openssl-gost/engine.git] / gost_grasshopper_cipher.c
1 /*
2  * Maxim Tishkov 2016
3  * This file is distributed under the same license as OpenSSL
4  */
5
6 #if defined(__cplusplus)
7 extern "C" {
8 #endif
9
10 #include "gost_grasshopper_cipher.h"
11 #include "gost_grasshopper_defines.h"
12 #include "gost_grasshopper_math.h"
13 #include "gost_grasshopper_core.h"
14
15 #include <openssl/evp.h>
16 #include <openssl/rand.h>
17 #include <openssl/err.h>
18 #include <string.h>
19
20 #include "gost_lcl.h"
21 #include "e_gost_err.h"
22
23 enum GRASSHOPPER_CIPHER_TYPE {
24     GRASSHOPPER_CIPHER_ECB = 0,
25     GRASSHOPPER_CIPHER_CBC,
26     GRASSHOPPER_CIPHER_OFB,
27     GRASSHOPPER_CIPHER_CFB,
28     GRASSHOPPER_CIPHER_CTR,
29     GRASSHOPPER_CIPHER_CTRACPKM,
30 };
31
32 static EVP_CIPHER *gost_grasshopper_ciphers[6] = {
33     [GRASSHOPPER_CIPHER_ECB] = NULL,
34     [GRASSHOPPER_CIPHER_CBC] = NULL,
35     [GRASSHOPPER_CIPHER_OFB] = NULL,
36     [GRASSHOPPER_CIPHER_CFB] = NULL,
37     [GRASSHOPPER_CIPHER_CTR] = NULL,
38     [GRASSHOPPER_CIPHER_CTRACPKM] = NULL,
39 };
40
41 static GRASSHOPPER_INLINE void
42     gost_grasshopper_cipher_destroy_ofb(gost_grasshopper_cipher_ctx * c);
43 static GRASSHOPPER_INLINE void
44     gost_grasshopper_cipher_destroy_ctr(gost_grasshopper_cipher_ctx * c);
45
46 struct GRASSHOPPER_CIPHER_PARAMS {
47     int nid;
48     grasshopper_init_cipher_func init_cipher;
49     grasshopper_do_cipher_func do_cipher;
50     grasshopper_destroy_cipher_func destroy_cipher;
51     int block_size;
52     int ctx_size;
53     int iv_size;
54     bool padding;
55 };
56
57 static struct GRASSHOPPER_CIPHER_PARAMS gost_cipher_params[6] = {
58     [GRASSHOPPER_CIPHER_ECB] = {
59                                 NID_grasshopper_ecb,
60                                 gost_grasshopper_cipher_init_ecb,
61                                 gost_grasshopper_cipher_do_ecb,
62                                 NULL,
63                                 16,
64                                 sizeof(gost_grasshopper_cipher_ctx),
65                                 0,
66                                 true}
67     ,
68     [GRASSHOPPER_CIPHER_CBC] = {
69                                 NID_grasshopper_cbc,
70                                 gost_grasshopper_cipher_init_cbc,
71                                 gost_grasshopper_cipher_do_cbc,
72                                 NULL,
73                                 16,
74                                 sizeof(gost_grasshopper_cipher_ctx),
75                                 16,
76                                 true}
77     ,
78     [GRASSHOPPER_CIPHER_OFB] = {
79                                 NID_grasshopper_ofb,
80                                 gost_grasshopper_cipher_init_ofb,
81                                 gost_grasshopper_cipher_do_ofb,
82                                 gost_grasshopper_cipher_destroy_ofb,
83                                 1,
84                                 sizeof(gost_grasshopper_cipher_ctx_ofb),
85                                 16,
86                                 false}
87     ,
88     [GRASSHOPPER_CIPHER_CFB] = {
89                                 NID_grasshopper_cfb,
90                                 gost_grasshopper_cipher_init_cfb,
91                                 gost_grasshopper_cipher_do_cfb,
92                                 NULL,
93                                 1,
94                                 sizeof(gost_grasshopper_cipher_ctx),
95                                 16,
96                                 false}
97     ,
98     [GRASSHOPPER_CIPHER_CTR] = {
99                                 NID_grasshopper_ctr,
100                                 gost_grasshopper_cipher_init_ctr,
101                                 gost_grasshopper_cipher_do_ctr,
102                                 gost_grasshopper_cipher_destroy_ctr,
103                                 1,
104                                 sizeof(gost_grasshopper_cipher_ctx_ctr),
105                                 /* IV size is set to match full block, to make it responsibility of
106                                  * user to assign correct values (IV || 0), and to make naive context
107                                  * copy possible (for software such as openssh) */
108                                 16,
109                                 false}
110     ,
111     [GRASSHOPPER_CIPHER_CTRACPKM] = {
112                                      NID_id_tc26_cipher_gostr3412_2015_kuznyechik_ctracpkm,
113                                      gost_grasshopper_cipher_init_ctracpkm,
114                                      gost_grasshopper_cipher_do_ctracpkm,
115                                      gost_grasshopper_cipher_destroy_ctr,
116                                      1,
117                                      sizeof
118                                      (gost_grasshopper_cipher_ctx_ctr),
119                                      16,
120                                      false}
121     ,
122 };
123
124 /* first 256 bit of D from draft-irtf-cfrg-re-keying-12 */
125 static const unsigned char ACPKM_D_2018[] = {
126     0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, /*  64 bit */
127     0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, /* 128 bit */
128     0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
129     0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f, /* 256 bit */
130 };
131
132 static void acpkm_next(gost_grasshopper_cipher_ctx * c) {
133     unsigned char newkey[GRASSHOPPER_KEY_SIZE];
134     const int J = GRASSHOPPER_KEY_SIZE / GRASSHOPPER_BLOCK_SIZE;
135     int n;
136
137     for (n = 0; n < J; n++) {
138         const unsigned char *D_n =
139             &ACPKM_D_2018[n * GRASSHOPPER_BLOCK_SIZE];
140
141         grasshopper_encrypt_block(&c->encrypt_round_keys,
142                                   (grasshopper_w128_t *) D_n,
143                                   (grasshopper_w128_t *) & newkey[n *
144                                                                   GRASSHOPPER_BLOCK_SIZE],
145                                   &c->buffer);
146     }
147     gost_grasshopper_cipher_key(c, newkey);
148 }
149
150 /* Set 256 bit  key into context */
151 GRASSHOPPER_INLINE void
152     gost_grasshopper_cipher_key(gost_grasshopper_cipher_ctx * c,
153                                 const uint8_t *k) {
154     int i;
155     for (i = 0; i < 2; i++) {
156         grasshopper_copy128(&c->key.k.k[i],
157                             (const grasshopper_w128_t *)(k + i * 16));
158     }
159     grasshopper_set_encrypt_key(&c->encrypt_round_keys, &c->key);
160     grasshopper_set_decrypt_key(&c->decrypt_round_keys, &c->key);
161 }
162
163 /* Cleans up key from context */
164 GRASSHOPPER_INLINE void
165     gost_grasshopper_cipher_destroy(gost_grasshopper_cipher_ctx * c) {
166     int i;
167     for (i = 0; i < 2; i++) {
168         grasshopper_zero128(&c->key.k.k[i]);
169     }
170     for (i = 0; i < GRASSHOPPER_ROUND_KEYS_COUNT; i++) {
171         grasshopper_zero128(&c->encrypt_round_keys.k[i]);
172     }
173     for (i = 0; i < GRASSHOPPER_ROUND_KEYS_COUNT; i++) {
174         grasshopper_zero128(&c->decrypt_round_keys.k[i]);
175     }
176     grasshopper_zero128(&c->buffer);
177 }
178
179 static GRASSHOPPER_INLINE void
180     gost_grasshopper_cipher_destroy_ofb(gost_grasshopper_cipher_ctx * c) {
181     gost_grasshopper_cipher_ctx_ofb *ctx =
182         (gost_grasshopper_cipher_ctx_ofb *) c;
183
184     grasshopper_zero128(&ctx->buffer1);
185 }
186
187 static GRASSHOPPER_INLINE void
188     gost_grasshopper_cipher_destroy_ctr(gost_grasshopper_cipher_ctx * c) {
189     gost_grasshopper_cipher_ctx_ctr *ctx =
190         (gost_grasshopper_cipher_ctx_ctr *) c;
191
192     grasshopper_zero128(&ctx->partial_buffer);
193 }
194
195 int gost_grasshopper_cipher_init(EVP_CIPHER_CTX *ctx,
196                                  const unsigned char *key,
197                                  const unsigned char *iv, int enc) {
198     gost_grasshopper_cipher_ctx *c = EVP_CIPHER_CTX_get_cipher_data(ctx);
199
200     if (EVP_CIPHER_CTX_get_app_data(ctx) == NULL) {
201         EVP_CIPHER_CTX_set_app_data(ctx,
202                                     EVP_CIPHER_CTX_get_cipher_data(ctx));
203     }
204
205     if (key != NULL) {
206         gost_grasshopper_cipher_key(c, key);
207     }
208
209     if (iv != NULL) {
210         memcpy((unsigned char *)EVP_CIPHER_CTX_original_iv(ctx), iv,
211                EVP_CIPHER_CTX_iv_length(ctx));
212     }
213
214     memcpy(EVP_CIPHER_CTX_iv_noconst(ctx),
215            EVP_CIPHER_CTX_original_iv(ctx), EVP_CIPHER_CTX_iv_length(ctx));
216
217     grasshopper_zero128(&c->buffer);
218
219     return 1;
220 }
221
222 GRASSHOPPER_INLINE int gost_grasshopper_cipher_init_ecb(EVP_CIPHER_CTX *ctx,
223                                                         const unsigned char
224                                                         *key,
225                                                         const unsigned char
226                                                         *iv, int enc) {
227     gost_grasshopper_cipher_ctx *c = EVP_CIPHER_CTX_get_cipher_data(ctx);
228     c->type = GRASSHOPPER_CIPHER_ECB;
229     return gost_grasshopper_cipher_init(ctx, key, iv, enc);
230 }
231
232 GRASSHOPPER_INLINE int gost_grasshopper_cipher_init_cbc(EVP_CIPHER_CTX *ctx,
233                                                         const unsigned char
234                                                         *key,
235                                                         const unsigned char
236                                                         *iv, int enc) {
237     gost_grasshopper_cipher_ctx *c = EVP_CIPHER_CTX_get_cipher_data(ctx);
238     c->type = GRASSHOPPER_CIPHER_CBC;
239     return gost_grasshopper_cipher_init(ctx, key, iv, enc);
240 }
241
242 GRASSHOPPER_INLINE int gost_grasshopper_cipher_init_ofb(EVP_CIPHER_CTX *ctx,
243                                                         const unsigned char
244                                                         *key,
245                                                         const unsigned char
246                                                         *iv, int enc) {
247     gost_grasshopper_cipher_ctx_ofb *c =
248         EVP_CIPHER_CTX_get_cipher_data(ctx);
249
250     c->c.type = GRASSHOPPER_CIPHER_OFB;
251
252     grasshopper_zero128(&c->buffer1);
253
254     return gost_grasshopper_cipher_init(ctx, key, iv, enc);
255 }
256
257 GRASSHOPPER_INLINE int gost_grasshopper_cipher_init_cfb(EVP_CIPHER_CTX *ctx,
258                                                         const unsigned char
259                                                         *key,
260                                                         const unsigned char
261                                                         *iv, int enc) {
262     gost_grasshopper_cipher_ctx *c = EVP_CIPHER_CTX_get_cipher_data(ctx);
263     c->type = GRASSHOPPER_CIPHER_CFB;
264     return gost_grasshopper_cipher_init(ctx, key, iv, enc);
265 }
266
267 GRASSHOPPER_INLINE int gost_grasshopper_cipher_init_ctr(EVP_CIPHER_CTX *ctx,
268                                                         const unsigned char
269                                                         *key,
270                                                         const unsigned char
271                                                         *iv, int enc) {
272     gost_grasshopper_cipher_ctx_ctr *c =
273         EVP_CIPHER_CTX_get_cipher_data(ctx);
274
275     c->c.type = GRASSHOPPER_CIPHER_CTR;
276     EVP_CIPHER_CTX_set_num(ctx, 0);
277
278     grasshopper_zero128(&c->partial_buffer);
279
280     return gost_grasshopper_cipher_init(ctx, key, iv, enc);
281 }
282
283 GRASSHOPPER_INLINE int gost_grasshopper_cipher_init_ctracpkm(EVP_CIPHER_CTX
284                                                              *ctx,
285                                                              const unsigned
286                                                              char *key,
287                                                              const unsigned
288                                                              char *iv,
289                                                              int enc) {
290     gost_grasshopper_cipher_ctx_ctr *c =
291         EVP_CIPHER_CTX_get_cipher_data(ctx);
292
293     /* NB: setting type makes EVP do_cipher callback useless */
294     c->c.type = GRASSHOPPER_CIPHER_CTRACPKM;
295     EVP_CIPHER_CTX_set_num(ctx, 0);
296     c->section_size = 4096;
297
298     return gost_grasshopper_cipher_init(ctx, key, iv, enc);
299 }
300
301 GRASSHOPPER_INLINE int gost_grasshopper_cipher_do(EVP_CIPHER_CTX *ctx,
302                                                   unsigned char *out,
303                                                   const unsigned char *in,
304                                                   size_t inl) {
305     gost_grasshopper_cipher_ctx *c =
306         (gost_grasshopper_cipher_ctx *) EVP_CIPHER_CTX_get_cipher_data(ctx);
307     struct GRASSHOPPER_CIPHER_PARAMS *params = &gost_cipher_params[c->type];
308
309     return params->do_cipher(ctx, out, in, inl);
310 }
311
312 int gost_grasshopper_cipher_do_ecb(EVP_CIPHER_CTX *ctx, unsigned char *out,
313                                    const unsigned char *in, size_t inl) {
314     gost_grasshopper_cipher_ctx *c =
315         (gost_grasshopper_cipher_ctx *) EVP_CIPHER_CTX_get_cipher_data(ctx);
316     bool encrypting = (bool) EVP_CIPHER_CTX_encrypting(ctx);
317     const unsigned char *current_in = in;
318     unsigned char *current_out = out;
319     size_t blocks = inl / GRASSHOPPER_BLOCK_SIZE;
320     size_t i;
321
322     for (i = 0; i < blocks;
323          i++, current_in += GRASSHOPPER_BLOCK_SIZE, current_out +=
324          GRASSHOPPER_BLOCK_SIZE) {
325         if (encrypting) {
326             grasshopper_encrypt_block(&c->encrypt_round_keys,
327                                       (grasshopper_w128_t *) current_in,
328                                       (grasshopper_w128_t *) current_out,
329                                       &c->buffer);
330         } else {
331             grasshopper_decrypt_block(&c->decrypt_round_keys,
332                                       (grasshopper_w128_t *) current_in,
333                                       (grasshopper_w128_t *) current_out,
334                                       &c->buffer);
335         }
336     }
337
338     return 1;
339 }
340
341 int gost_grasshopper_cipher_do_cbc(EVP_CIPHER_CTX *ctx, unsigned char *out,
342                                    const unsigned char *in, size_t inl) {
343     gost_grasshopper_cipher_ctx *c =
344         (gost_grasshopper_cipher_ctx *) EVP_CIPHER_CTX_get_cipher_data(ctx);
345     unsigned char *iv = EVP_CIPHER_CTX_iv_noconst(ctx);
346     bool encrypting = (bool) EVP_CIPHER_CTX_encrypting(ctx);
347     const unsigned char *current_in = in;
348     unsigned char *current_out = out;
349     grasshopper_w128_t *currentInputBlock;
350     grasshopper_w128_t *currentOutputBlock;
351     size_t blocks = inl / GRASSHOPPER_BLOCK_SIZE;
352     size_t i;
353     grasshopper_w128_t *currentBlock;
354
355     currentBlock = (grasshopper_w128_t *) iv;
356
357     for (i = 0; i < blocks;
358          i++, current_in += GRASSHOPPER_BLOCK_SIZE, current_out +=
359          GRASSHOPPER_BLOCK_SIZE) {
360         currentInputBlock = (grasshopper_w128_t *) current_in;
361         currentOutputBlock = (grasshopper_w128_t *) current_out;
362         if (encrypting) {
363             grasshopper_append128(currentBlock, currentInputBlock);
364             grasshopper_encrypt_block(&c->encrypt_round_keys, currentBlock,
365                                       currentOutputBlock, &c->buffer);
366             grasshopper_copy128(currentBlock, currentOutputBlock);
367         } else {
368             grasshopper_decrypt_block(&c->decrypt_round_keys,
369                                       currentInputBlock, currentOutputBlock,
370                                       &c->buffer);
371             grasshopper_append128(currentOutputBlock, currentBlock);
372             grasshopper_copy128(currentBlock, currentInputBlock);
373         }
374     }
375
376     return 1;
377 }
378
379 void inc_counter(unsigned char *counter, size_t counter_bytes) {
380     unsigned char c;
381     unsigned int n = counter_bytes;
382
383     do {
384         --n;
385         c = counter[n];
386         ++c;
387         counter[n] = c;
388         if (c)
389             return;
390     } while (n);
391 }
392
393 /* increment counter (128-bit int) by 1 */
394 static void ctr128_inc(unsigned char *counter) {
395     inc_counter(counter, 16);
396 }
397
398 int gost_grasshopper_cipher_do_ctr(EVP_CIPHER_CTX *ctx, unsigned char *out,
399                                    const unsigned char *in, size_t inl) {
400     gost_grasshopper_cipher_ctx_ctr *c =
401         (gost_grasshopper_cipher_ctx_ctr *)
402         EVP_CIPHER_CTX_get_cipher_data(ctx);
403     unsigned char *iv = EVP_CIPHER_CTX_iv_noconst(ctx);
404     const unsigned char *current_in = in;
405     unsigned char *current_out = out;
406     grasshopper_w128_t *currentInputBlock;
407     grasshopper_w128_t *currentOutputBlock;
408     unsigned int n = EVP_CIPHER_CTX_num(ctx);
409     size_t lasted;
410     size_t i;
411
412     while (n && inl) {
413         *(current_out++) = *(current_in++) ^ c->partial_buffer.b[n];
414         --inl;
415         n = (n + 1) % GRASSHOPPER_BLOCK_SIZE;
416     }
417     EVP_CIPHER_CTX_set_num(ctx, n);
418     size_t blocks = inl / GRASSHOPPER_BLOCK_SIZE;
419
420     grasshopper_w128_t *iv_buffer = (grasshopper_w128_t *) iv;
421     grasshopper_w128_t tmp;
422
423     // full parts
424     for (i = 0; i < blocks; i++) {
425         currentInputBlock = (grasshopper_w128_t *) current_in;
426         currentOutputBlock = (grasshopper_w128_t *) current_out;
427         grasshopper_encrypt_block(&c->c.encrypt_round_keys, iv_buffer,
428                                   &c->partial_buffer, &c->c.buffer);
429         grasshopper_plus128(&tmp, &c->partial_buffer, currentInputBlock);
430         grasshopper_copy128(currentOutputBlock, &tmp);
431         ctr128_inc(iv_buffer->b);
432         current_in += GRASSHOPPER_BLOCK_SIZE;
433         current_out += GRASSHOPPER_BLOCK_SIZE;
434     }
435
436     // last part
437     lasted = inl - blocks * GRASSHOPPER_BLOCK_SIZE;
438     if (lasted > 0) {
439         currentInputBlock = (grasshopper_w128_t *) current_in;
440         currentOutputBlock = (grasshopper_w128_t *) current_out;
441         grasshopper_encrypt_block(&c->c.encrypt_round_keys, iv_buffer,
442                                   &c->partial_buffer, &c->c.buffer);
443         for (i = 0; i < lasted; i++) {
444             currentOutputBlock->b[i] =
445                 c->partial_buffer.b[i] ^ currentInputBlock->b[i];
446         }
447         EVP_CIPHER_CTX_set_num(ctx, i);
448         ctr128_inc(iv_buffer->b);
449     }
450
451     return 1;
452 }
453
454 #define GRASSHOPPER_BLOCK_MASK (GRASSHOPPER_BLOCK_SIZE - 1)
455 static inline void apply_acpkm_grasshopper(gost_grasshopper_cipher_ctx_ctr *
456                                            ctx, unsigned int *num) {
457     if (!ctx->section_size || (*num < ctx->section_size))
458         return;
459     acpkm_next(&ctx->c);
460     *num &= GRASSHOPPER_BLOCK_MASK;
461 }
462
463 /* If meshing is not configured via ctrl (setting section_size)
464  * this function works exactly like plain ctr */
465 int gost_grasshopper_cipher_do_ctracpkm(EVP_CIPHER_CTX *ctx,
466                                         unsigned char *out,
467                                         const unsigned char *in,
468                                         size_t inl) {
469     gost_grasshopper_cipher_ctx_ctr *c =
470         EVP_CIPHER_CTX_get_cipher_data(ctx);
471     unsigned char *iv = EVP_CIPHER_CTX_iv_noconst(ctx);
472     unsigned int num = EVP_CIPHER_CTX_num(ctx);
473
474     while ((num & GRASSHOPPER_BLOCK_MASK) && inl) {
475         *out++ = *in++ ^ c->partial_buffer.b[num & GRASSHOPPER_BLOCK_MASK];
476         --inl;
477         num++;
478     }
479     size_t blocks = inl / GRASSHOPPER_BLOCK_SIZE;
480     size_t i;
481     grasshopper_w128_t tmp;
482
483     // full parts
484     for (i = 0; i < blocks; i++) {
485         apply_acpkm_grasshopper(c, &num);
486         grasshopper_encrypt_block(&c->c.encrypt_round_keys,
487                                   (grasshopper_w128_t *) iv,
488                                   (grasshopper_w128_t *) &c->partial_buffer, &c->c.buffer);
489         grasshopper_plus128(&tmp, &c->partial_buffer, (grasshopper_w128_t *) in);
490         grasshopper_copy128((grasshopper_w128_t *) out, &tmp);
491         ctr128_inc(iv);
492         in += GRASSHOPPER_BLOCK_SIZE;
493         out += GRASSHOPPER_BLOCK_SIZE;
494         num += GRASSHOPPER_BLOCK_SIZE;
495     }
496
497     // last part
498     size_t lasted = inl - blocks * GRASSHOPPER_BLOCK_SIZE;
499     if (lasted > 0) {
500         apply_acpkm_grasshopper(c, &num);
501         grasshopper_encrypt_block(&c->c.encrypt_round_keys,
502                                   (grasshopper_w128_t *) iv,
503                                   &c->partial_buffer, &c->c.buffer);
504         for (i = 0; i < lasted; i++)
505             out[i] = c->partial_buffer.b[i] ^ in[i];
506         ctr128_inc(iv);
507         num += lasted;
508     }
509     EVP_CIPHER_CTX_set_num(ctx, num);
510
511     return 1;
512 }
513
514 /*
515  * Fixed 128-bit IV implementation make shift regiser redundant.
516  */
517 static void gost_grasshopper_cnt_next(gost_grasshopper_cipher_ctx_ofb * ctx,
518                                       grasshopper_w128_t * iv,
519                                       grasshopper_w128_t * buf) {
520     memcpy(&ctx->buffer1, iv, 16);
521     grasshopper_encrypt_block(&ctx->c.encrypt_round_keys, &ctx->buffer1,
522                               buf, &ctx->c.buffer);
523     memcpy(iv, buf, 16);
524 }
525
526 int gost_grasshopper_cipher_do_ofb(EVP_CIPHER_CTX *ctx, unsigned char *out,
527                                    const unsigned char *in, size_t inl) {
528     gost_grasshopper_cipher_ctx_ofb *c =
529         (gost_grasshopper_cipher_ctx_ofb *)
530         EVP_CIPHER_CTX_get_cipher_data(ctx);
531     const unsigned char *in_ptr = in;
532     unsigned char *out_ptr = out;
533     unsigned char *buf = EVP_CIPHER_CTX_buf_noconst(ctx);
534     unsigned char *iv = EVP_CIPHER_CTX_iv_noconst(ctx);
535     int num = EVP_CIPHER_CTX_num(ctx);
536     size_t i = 0;
537     size_t j;
538
539     /* process partial block if any */
540     if (num > 0) {
541         for (j = (size_t)num, i = 0; j < GRASSHOPPER_BLOCK_SIZE && i < inl;
542              j++, i++, in_ptr++, out_ptr++) {
543             *out_ptr = buf[j] ^ (*in_ptr);
544         }
545         if (j == GRASSHOPPER_BLOCK_SIZE) {
546             EVP_CIPHER_CTX_set_num(ctx, 0);
547         } else {
548             EVP_CIPHER_CTX_set_num(ctx, (int)j);
549             return 1;
550         }
551     }
552
553     for (; i + GRASSHOPPER_BLOCK_SIZE <
554          inl;
555          i += GRASSHOPPER_BLOCK_SIZE, in_ptr +=
556          GRASSHOPPER_BLOCK_SIZE, out_ptr += GRASSHOPPER_BLOCK_SIZE) {
557         /*
558          * block cipher current iv
559          */
560         /* Encrypt */
561         gost_grasshopper_cnt_next(c, (grasshopper_w128_t *) iv,
562                                   (grasshopper_w128_t *) buf);
563
564         /*
565          * xor next block of input text with it and output it
566          */
567         /*
568          * output this block
569          */
570         for (j = 0; j < GRASSHOPPER_BLOCK_SIZE; j++) {
571             out_ptr[j] = buf[j] ^ in_ptr[j];
572         }
573     }
574
575     /* Process rest of buffer */
576     if (i < inl) {
577         gost_grasshopper_cnt_next(c, (grasshopper_w128_t *) iv,
578                                   (grasshopper_w128_t *) buf);
579         for (j = 0; i < inl; j++, i++) {
580             out_ptr[j] = buf[j] ^ in_ptr[j];
581         }
582         EVP_CIPHER_CTX_set_num(ctx, (int)j);
583     } else {
584         EVP_CIPHER_CTX_set_num(ctx, 0);
585     }
586
587     return 1;
588 }
589
590 int gost_grasshopper_cipher_do_cfb(EVP_CIPHER_CTX *ctx, unsigned char *out,
591                                    const unsigned char *in, size_t inl) {
592     gost_grasshopper_cipher_ctx *c =
593         (gost_grasshopper_cipher_ctx *) EVP_CIPHER_CTX_get_cipher_data(ctx);
594     const unsigned char *in_ptr = in;
595     unsigned char *out_ptr = out;
596     unsigned char *buf = EVP_CIPHER_CTX_buf_noconst(ctx);
597     unsigned char *iv = EVP_CIPHER_CTX_iv_noconst(ctx);
598     bool encrypting = (bool) EVP_CIPHER_CTX_encrypting(ctx);
599     int num = EVP_CIPHER_CTX_num(ctx);
600     size_t i = 0;
601     size_t j = 0;
602
603     /* process partial block if any */
604     if (num > 0) {
605         for (j = (size_t)num, i = 0; j < GRASSHOPPER_BLOCK_SIZE && i < inl;
606              j++, i++, in_ptr++, out_ptr++) {
607             if (!encrypting) {
608                 buf[j + GRASSHOPPER_BLOCK_SIZE] = *in_ptr;
609             }
610             *out_ptr = buf[j] ^ (*in_ptr);
611             if (encrypting) {
612                 buf[j + GRASSHOPPER_BLOCK_SIZE] = *out_ptr;
613             }
614         }
615         if (j == GRASSHOPPER_BLOCK_SIZE) {
616             memcpy(iv, buf + GRASSHOPPER_BLOCK_SIZE,
617                    GRASSHOPPER_BLOCK_SIZE);
618             EVP_CIPHER_CTX_set_num(ctx, 0);
619         } else {
620             EVP_CIPHER_CTX_set_num(ctx, (int)j);
621             return 1;
622         }
623     }
624
625     for (; i + GRASSHOPPER_BLOCK_SIZE <
626          inl;
627          i += GRASSHOPPER_BLOCK_SIZE, in_ptr +=
628          GRASSHOPPER_BLOCK_SIZE, out_ptr += GRASSHOPPER_BLOCK_SIZE) {
629         /*
630          * block cipher current iv
631          */
632         grasshopper_encrypt_block(&c->encrypt_round_keys,
633                                   (grasshopper_w128_t *) iv,
634                                   (grasshopper_w128_t *) buf, &c->buffer);
635         /*
636          * xor next block of input text with it and output it
637          */
638         /*
639          * output this block
640          */
641         if (!encrypting) {
642             memcpy(iv, in_ptr, GRASSHOPPER_BLOCK_SIZE);
643         }
644         for (j = 0; j < GRASSHOPPER_BLOCK_SIZE; j++) {
645             out_ptr[j] = buf[j] ^ in_ptr[j];
646         }
647         /* Encrypt */
648         /* Next iv is next block of cipher text */
649         if (encrypting) {
650             memcpy(iv, out_ptr, GRASSHOPPER_BLOCK_SIZE);
651         }
652     }
653
654     /* Process rest of buffer */
655     if (i < inl) {
656         grasshopper_encrypt_block(&c->encrypt_round_keys,
657                                   (grasshopper_w128_t *) iv,
658                                   (grasshopper_w128_t *) buf, &c->buffer);
659         if (!encrypting) {
660             memcpy(buf + GRASSHOPPER_BLOCK_SIZE, in_ptr, inl - i);
661         }
662         for (j = 0; i < inl; j++, i++) {
663             out_ptr[j] = buf[j] ^ in_ptr[j];
664         }
665         EVP_CIPHER_CTX_set_num(ctx, (int)j);
666         if (encrypting) {
667             memcpy(buf + GRASSHOPPER_BLOCK_SIZE, out_ptr, j);
668         }
669     } else {
670         EVP_CIPHER_CTX_set_num(ctx, 0);
671     }
672
673     return 1;
674 }
675
676 int gost_grasshopper_cipher_cleanup(EVP_CIPHER_CTX *ctx) {
677     gost_grasshopper_cipher_ctx *c =
678         (gost_grasshopper_cipher_ctx *) EVP_CIPHER_CTX_get_cipher_data(ctx);
679
680     if (!c)
681         return 1;
682
683     struct GRASSHOPPER_CIPHER_PARAMS *params = &gost_cipher_params[c->type];
684
685     gost_grasshopper_cipher_destroy(c);
686     if (params->destroy_cipher != NULL) {
687         params->destroy_cipher(c);
688     }
689
690     EVP_CIPHER_CTX_set_app_data(ctx, NULL);
691
692     return 1;
693 }
694
695 int gost_grasshopper_set_asn1_parameters(EVP_CIPHER_CTX *ctx,
696                                          ASN1_TYPE *params) {
697     int len = 0;
698     unsigned char *buf = NULL;
699     ASN1_OCTET_STRING *os = NULL;
700
701     os = ASN1_OCTET_STRING_new();
702
703     if (!os || !ASN1_OCTET_STRING_set(os, buf, len)) {
704         OPENSSL_free(buf);
705         GOSTerr(GOST_F_GOST_GRASSHOPPER_SET_ASN1_PARAMETERS,
706                 ERR_R_MALLOC_FAILURE);
707         return 0;
708     }
709     OPENSSL_free(buf);
710
711     ASN1_TYPE_set(params, V_ASN1_SEQUENCE, os);
712     return 1;
713 }
714
715 GRASSHOPPER_INLINE int gost_grasshopper_get_asn1_parameters(EVP_CIPHER_CTX
716                                                             *ctx,
717                                                             ASN1_TYPE
718                                                             *params) {
719     int ret = -1;
720
721     if (ASN1_TYPE_get(params) != V_ASN1_SEQUENCE) {
722         return ret;
723     }
724
725     return 1;
726 }
727
728 int gost_grasshopper_cipher_ctl(EVP_CIPHER_CTX *ctx, int type, int arg,
729                                 void *ptr) {
730     switch (type) {
731     case EVP_CTRL_RAND_KEY:{
732             if (RAND_bytes
733                 ((unsigned char *)ptr,
734                  EVP_CIPHER_CTX_key_length(ctx)) <= 0) {
735                 GOSTerr(GOST_F_GOST_GRASSHOPPER_CIPHER_CTL,
736                         GOST_R_RNG_ERROR);
737                 return -1;
738             }
739             break;
740         }
741     case EVP_CTRL_KEY_MESH:{
742             gost_grasshopper_cipher_ctx_ctr *c =
743                 EVP_CIPHER_CTX_get_cipher_data(ctx);
744             if (c->c.type != GRASSHOPPER_CIPHER_CTRACPKM || !arg
745                 || (arg % GRASSHOPPER_BLOCK_SIZE))
746                 return -1;
747             c->section_size = arg;
748             break;
749         }
750     default:
751         GOSTerr(GOST_F_GOST_GRASSHOPPER_CIPHER_CTL,
752                 GOST_R_UNSUPPORTED_CIPHER_CTL_COMMAND);
753         return -1;
754     }
755     return 1;
756 }
757
758 GRASSHOPPER_INLINE EVP_CIPHER *cipher_gost_grasshopper_create(int
759                                                               cipher_type,
760                                                               int
761                                                               block_size) {
762     return EVP_CIPHER_meth_new(cipher_type, block_size /* block_size */ ,
763                                GRASSHOPPER_KEY_SIZE /* key_size */ );
764 }
765
766 const int cipher_gost_grasshopper_setup(EVP_CIPHER *cipher, uint8_t mode,
767                                         int iv_size, bool padding) {
768     return EVP_CIPHER_meth_set_iv_length(cipher, iv_size)
769         && EVP_CIPHER_meth_set_flags(cipher,
770                                      (unsigned long)(mode |
771                                                      ((!padding) ?
772                                                       EVP_CIPH_NO_PADDING :
773                                                       0) | ((iv_size >
774                                                              0) ?
775                                                             EVP_CIPH_CUSTOM_IV
776                                                             : 0) |
777                                                      EVP_CIPH_RAND_KEY |
778                                                      EVP_CIPH_ALWAYS_CALL_INIT)
779         )
780         && EVP_CIPHER_meth_set_cleanup(cipher,
781                                        gost_grasshopper_cipher_cleanup)
782         && EVP_CIPHER_meth_set_set_asn1_params(cipher,
783                                                gost_grasshopper_set_asn1_parameters)
784         && EVP_CIPHER_meth_set_get_asn1_params(cipher,
785                                                gost_grasshopper_get_asn1_parameters)
786         && EVP_CIPHER_meth_set_ctrl(cipher, gost_grasshopper_cipher_ctl)
787         && EVP_CIPHER_meth_set_do_cipher(cipher,
788                                          gost_grasshopper_cipher_do);
789 }
790
791 const GRASSHOPPER_INLINE EVP_CIPHER *cipher_gost_grasshopper(uint8_t mode,
792                                                              uint8_t num) {
793     EVP_CIPHER **cipher;
794     struct GRASSHOPPER_CIPHER_PARAMS *params;
795
796     cipher = &gost_grasshopper_ciphers[num];
797
798     if (*cipher == NULL) {
799         params = &gost_cipher_params[num];
800
801         int nid = params->nid;
802         grasshopper_init_cipher_func init_cipher = params->init_cipher;
803         int block_size = params->block_size;
804         int ctx_size = params->ctx_size;
805         int iv_size = params->iv_size;
806         bool padding = params->padding;
807
808         *cipher = cipher_gost_grasshopper_create(nid, block_size);
809         if (*cipher == NULL) {
810             return NULL;
811         }
812
813         if (!cipher_gost_grasshopper_setup(*cipher, mode, iv_size, padding)
814             || !EVP_CIPHER_meth_set_init(*cipher, init_cipher)
815             || !EVP_CIPHER_meth_set_impl_ctx_size(*cipher, ctx_size)) {
816             EVP_CIPHER_meth_free(*cipher);
817             *cipher = NULL;
818         }
819     }
820
821     return *cipher;
822 }
823
824 const GRASSHOPPER_INLINE EVP_CIPHER *cipher_gost_grasshopper_ecb() {
825     return cipher_gost_grasshopper(EVP_CIPH_ECB_MODE,
826                                    GRASSHOPPER_CIPHER_ECB);
827 }
828
829 const GRASSHOPPER_INLINE EVP_CIPHER *cipher_gost_grasshopper_cbc() {
830     return cipher_gost_grasshopper(EVP_CIPH_CBC_MODE,
831                                    GRASSHOPPER_CIPHER_CBC);
832 }
833
834 const GRASSHOPPER_INLINE EVP_CIPHER *cipher_gost_grasshopper_ofb() {
835     return cipher_gost_grasshopper(EVP_CIPH_OFB_MODE,
836                                    GRASSHOPPER_CIPHER_OFB);
837 }
838
839 const GRASSHOPPER_INLINE EVP_CIPHER *cipher_gost_grasshopper_cfb() {
840     return cipher_gost_grasshopper(EVP_CIPH_CFB_MODE,
841                                    GRASSHOPPER_CIPHER_CFB);
842 }
843
844 const GRASSHOPPER_INLINE EVP_CIPHER *cipher_gost_grasshopper_ctr() {
845     return cipher_gost_grasshopper(EVP_CIPH_CTR_MODE,
846                                    GRASSHOPPER_CIPHER_CTR);
847 }
848
849 const GRASSHOPPER_INLINE EVP_CIPHER *cipher_gost_grasshopper_ctracpkm() {
850     return cipher_gost_grasshopper(EVP_CIPH_CTR_MODE,
851                                    GRASSHOPPER_CIPHER_CTRACPKM);
852 }
853
854 void cipher_gost_grasshopper_destroy(void) {
855     EVP_CIPHER_meth_free(gost_grasshopper_ciphers[GRASSHOPPER_CIPHER_ECB]);
856     gost_grasshopper_ciphers[GRASSHOPPER_CIPHER_ECB] = NULL;
857     EVP_CIPHER_meth_free(gost_grasshopper_ciphers[GRASSHOPPER_CIPHER_CBC]);
858     gost_grasshopper_ciphers[GRASSHOPPER_CIPHER_CBC] = NULL;
859     EVP_CIPHER_meth_free(gost_grasshopper_ciphers[GRASSHOPPER_CIPHER_OFB]);
860     gost_grasshopper_ciphers[GRASSHOPPER_CIPHER_OFB] = NULL;
861     EVP_CIPHER_meth_free(gost_grasshopper_ciphers[GRASSHOPPER_CIPHER_CFB]);
862     gost_grasshopper_ciphers[GRASSHOPPER_CIPHER_CFB] = NULL;
863     EVP_CIPHER_meth_free(gost_grasshopper_ciphers[GRASSHOPPER_CIPHER_CTR]);
864     gost_grasshopper_ciphers[GRASSHOPPER_CIPHER_CTR] = NULL;
865     EVP_CIPHER_meth_free(gost_grasshopper_ciphers
866                          [GRASSHOPPER_CIPHER_CTRACPKM]);
867     gost_grasshopper_ciphers[GRASSHOPPER_CIPHER_CTRACPKM] = NULL;
868 }
869
870 #if defined(__cplusplus)
871 }
872 #endif