projects
/
openssl.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
e_aes.c: uninitialized variable in aes_ccm_init_key.
[openssl.git]
/
crypto
/
evp
/
e_aes.c
diff --git
a/crypto/evp/e_aes.c
b/crypto/evp/e_aes.c
index 519e0143d2658fc45d4fe756fde79f5715f84294..5dccb2f6085b81bbbe6f5949a5085a96a93ed2c2 100644
(file)
--- a/
crypto/evp/e_aes.c
+++ b/
crypto/evp/e_aes.c
@@
-1218,6
+1218,7
@@
static int aes_ccm_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
vpaes_set_encrypt_key(key, ctx->key_len*8, &cctx->ks);
CRYPTO_ccm128_init(&cctx->ccm, cctx->M, cctx->L,
&cctx->ks, (block128_f)vpaes_encrypt);
+ cctx->str = NULL;
cctx->key_set = 1;
break;
}