From: Dr. Stephen Henson Date: Tue, 9 Jun 2015 22:17:06 +0000 (+0100) Subject: Relax CCM tag check. X-Git-Tag: OpenSSL_1_0_2d~6 X-Git-Url: https://git.openssl.org/gitweb/?a=commitdiff_plain;h=c0b674b7cbd9146982850523293c74b9131b26d5;p=openssl.git Relax CCM tag check. In CCM mode don't require a tag before initialising decrypt: this allows the tag length to be set without requiring the tag. Reviewed-by: Rich Salz (cherry picked from commit 9cca7be11d62298b2af0722f94345012c86eaed4) --- diff --git a/crypto/evp/e_aes.c b/crypto/evp/e_aes.c index 33cbed87f4..1734a823c1 100644 --- a/crypto/evp/e_aes.c +++ b/crypto/evp/e_aes.c @@ -1771,7 +1771,7 @@ static int aes_ccm_ctrl(EVP_CIPHER_CTX *c, int type, int arg, void *ptr) case EVP_CTRL_CCM_SET_TAG: if ((arg & 1) || arg < 4 || arg > 16) return 0; - if ((c->encrypt && ptr) || (!c->encrypt && !ptr)) + if (c->encrypt && ptr) return 0; if (ptr) { cctx->tag_set = 1;