engine/cchost: fix bugs.

PR: 2821
Submitted by: Dmitry Belyavsky, Serguei Leontiev
This commit is contained in:
Andy Polyakov 2012-12-19 10:45:13 +00:00
parent 0a2d5003df
commit 947e129219
3 changed files with 27 additions and 9 deletions

View File

@ -369,7 +369,13 @@ int gost_mac(gost_ctx *ctx,int mac_len,const unsigned char *data,
memset(buf2,0,8); memset(buf2,0,8);
memcpy(buf2,data+i,data_len-i); memcpy(buf2,data+i,data_len-i);
mac_block(ctx,buffer,buf2); mac_block(ctx,buffer,buf2);
} i+=8;
}
if (i==8)
{
memset(buf2,0,8);
mac_block(ctx,buffer,buf2);
}
get_mac(buffer,mac_len,mac); get_mac(buffer,mac_len,mac);
return 1; return 1;
} }
@ -389,7 +395,13 @@ int gost_mac_iv(gost_ctx *ctx,int mac_len,const unsigned char *iv,const unsigned
memset(buf2,0,8); memset(buf2,0,8);
memcpy(buf2,data+i,data_len-i); memcpy(buf2,data+i,data_len-i);
mac_block(ctx,buffer,buf2); mac_block(ctx,buffer,buf2);
i+=8;
} }
if (i==8)
{
memset(buf2,0,8);
mac_block(ctx,buffer,buf2);
}
get_mac(buffer,mac_len,mac); get_mac(buffer,mac_len,mac);
return 1; return 1;
} }

View File

@ -206,12 +206,12 @@ int gost_cipher_init(EVP_CIPHER_CTX *ctx, const unsigned char *key,
static void gost_crypt_mesh (void *ctx,unsigned char *iv,unsigned char *buf) static void gost_crypt_mesh (void *ctx,unsigned char *iv,unsigned char *buf)
{ {
struct ossl_gost_cipher_ctx *c = ctx; struct ossl_gost_cipher_ctx *c = ctx;
if (c->count&&c->key_meshing && c->count%1024==0) if (c->key_meshing && c->count==1024)
{ {
cryptopro_key_meshing(&(c->cctx),iv); cryptopro_key_meshing(&(c->cctx),iv);
} }
gostcrypt(&(c->cctx),iv,buf); gostcrypt(&(c->cctx),iv,buf);
c->count+=8; c->count = (c->count+8)%1024 + 1024;
} }
static void gost_cnt_next (void *ctx, unsigned char *iv, unsigned char *buf) static void gost_cnt_next (void *ctx, unsigned char *iv, unsigned char *buf)
@ -219,7 +219,7 @@ static void gost_cnt_next (void *ctx, unsigned char *iv, unsigned char *buf)
struct ossl_gost_cipher_ctx *c = ctx; struct ossl_gost_cipher_ctx *c = ctx;
word32 g,go; word32 g,go;
unsigned char buf1[8]; unsigned char buf1[8];
if (c->count && c->key_meshing && c->count %1024 ==0) if (c->key_meshing && c->count==1024)
{ {
cryptopro_key_meshing(&(c->cctx),iv); cryptopro_key_meshing(&(c->cctx),iv);
} }
@ -248,7 +248,7 @@ static void gost_cnt_next (void *ctx, unsigned char *iv, unsigned char *buf)
buf1[7]=(unsigned char)((g>>24)&0xff); buf1[7]=(unsigned char)((g>>24)&0xff);
memcpy(iv,buf1,8); memcpy(iv,buf1,8);
gostcrypt(&(c->cctx),buf1,buf); gostcrypt(&(c->cctx),buf1,buf);
c->count +=8; c->count = (c->count+8)%1024 + 1024;
} }
/* GOST encryption in CFB mode */ /* GOST encryption in CFB mode */
@ -511,12 +511,12 @@ static void mac_block_mesh(struct ossl_gost_imit_ctx *c,const unsigned char *dat
* interpret internal state of MAC algorithm as iv during keymeshing * interpret internal state of MAC algorithm as iv during keymeshing
* (but does initialize internal state from iv in key transport * (but does initialize internal state from iv in key transport
*/ */
if (c->key_meshing&& c->count && c->count %1024 ==0) if (c->key_meshing && c->count==1024)
{ {
cryptopro_key_meshing(&(c->cctx),buffer); cryptopro_key_meshing(&(c->cctx),buffer);
} }
mac_block(&(c->cctx),c->buffer,data); mac_block(&(c->cctx),c->buffer,data);
c->count +=8; c->count = (c->count+1)%1024 + 1024;
} }
int gost_imit_update(EVP_MD_CTX *ctx, const void *data, size_t count) int gost_imit_update(EVP_MD_CTX *ctx, const void *data, size_t count)
@ -565,6 +565,12 @@ int gost_imit_final(EVP_MD_CTX *ctx,unsigned char *md)
GOSTerr(GOST_F_GOST_IMIT_FINAL, GOST_R_MAC_KEY_NOT_SET); GOSTerr(GOST_F_GOST_IMIT_FINAL, GOST_R_MAC_KEY_NOT_SET);
return 0; return 0;
} }
if (c->count==0 && c->bytes_left)
{
unsigned char buffer[8];
memset(buffer, 0, 8);
gost_imit_update(ctx, buffer, 8);
}
if (c->bytes_left) if (c->bytes_left)
{ {
int i; int i;

View File

@ -136,7 +136,7 @@ extern EVP_MD imit_gost_cpa;
/* Cipher context used for EVP_CIPHER operation */ /* Cipher context used for EVP_CIPHER operation */
struct ossl_gost_cipher_ctx { struct ossl_gost_cipher_ctx {
int paramNID; int paramNID;
off_t count; unsigned int count;
int key_meshing; int key_meshing;
gost_ctx cctx; gost_ctx cctx;
}; };
@ -151,7 +151,7 @@ struct ossl_gost_imit_ctx {
gost_ctx cctx; gost_ctx cctx;
unsigned char buffer[8]; unsigned char buffer[8];
unsigned char partial_block[8]; unsigned char partial_block[8];
off_t count; unsigned int count;
int key_meshing; int key_meshing;
int bytes_left; int bytes_left;
int key_set; int key_set;