summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2012-04-11 15:05:45 +0000
committerDr. Stephen Henson <steve@openssl.org>2012-04-11 15:05:45 +0000
commit39ef161c72f145eef1feb000c8e9f1437a873d7f (patch)
tree1144d4e3bcb024881523718c34c8a61ae81f7163
parenta7612c506624a8f249703fbfd7cf2131826a17fc (diff)
fix reset fix
-rw-r--r--crypto/cmac/cmac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/cmac/cmac.c b/crypto/cmac/cmac.c
index 7ae776e3fc..8004ae04bf 100644
--- a/crypto/cmac/cmac.c
+++ b/crypto/cmac/cmac.c
@@ -179,7 +179,7 @@ int CMAC_Init(CMAC_CTX *ctx, const void *key, size_t keylen,
return 0;
if (!EVP_EncryptInit_ex(&ctx->cctx, NULL, NULL, NULL, zero_iv))
return 0;
- memset(ctx->tbl, 0, bl);
+ memset(ctx->tbl, 0, M_EVP_CIPHER_CTX_block_size(&ctx->cctx));
ctx->nlast_block = 0;
return 1;
}