]> www.wagner.pp.ru Git - openssl-gost/engine.git/commitdiff
grasshopper: Fix streaming for CTR mode
authorVitaly Chikunov <vt@altlinux.org>
Sun, 22 Jul 2018 07:34:03 +0000 (10:34 +0300)
committerVitaly Chikunov <vt@altlinux.org>
Sun, 22 Jul 2018 07:37:11 +0000 (10:37 +0300)
Previously CTR did not continue unfinished block on the next cipher
iteration.

gost_grasshopper_cipher.c

index da68057e855777371a9ff09c7d20195b0de65c0a..d9acd1eb2a28f9726b4b3ff6e5776a03bfbb163d 100644 (file)
@@ -209,6 +209,7 @@ GRASSHOPPER_INLINE int gost_grasshopper_cipher_init_ctr(EVP_CIPHER_CTX* ctx, con
     gost_grasshopper_cipher_ctx_ctr* c = EVP_CIPHER_CTX_get_cipher_data(ctx);
 
     c->c.type = GRASSHOPPER_CIPHER_CTR;
+    ctx->num = 0;
 
     grasshopper_zero128(&c->iv_buffer);
     grasshopper_zero128(&c->partial_buffer);
@@ -306,12 +307,20 @@ int gost_grasshopper_cipher_do_ctr(EVP_CIPHER_CTX* ctx, unsigned char* out,
     unsigned char* iv = EVP_CIPHER_CTX_iv_noconst(ctx);
     const unsigned char* current_in = in;
     unsigned char* current_out = out;
-    size_t blocks = inl / GRASSHOPPER_BLOCK_SIZE;
     grasshopper_w128_t* currentInputBlock;
     grasshopper_w128_t* currentOutputBlock;
+    unsigned int n = ctx->num;
     size_t lasted;
     size_t i;
 
+    while (n && inl) {
+       *(current_out++) = *(current_in++) ^ c->partial_buffer.b[n];
+       --inl;
+       n = (n + 1) % GRASSHOPPER_BLOCK_SIZE;
+    }
+    ctx->num = n;
+    size_t blocks = inl / GRASSHOPPER_BLOCK_SIZE;
+
     memcpy(&c->iv_buffer, iv, 8);
 
     // full parts
@@ -334,6 +343,7 @@ int gost_grasshopper_cipher_do_ctr(EVP_CIPHER_CTX* ctx, unsigned char* out,
         for (i = 0; i < lasted; i++) {
             currentOutputBlock->b[i] = c->partial_buffer.b[i] ^ currentInputBlock->b[i];
         }
+       ctx->num = i;
         ctr128_inc(c->iv_buffer.b);
     }