From 7ac6a21af580689a62bfdec3061f54abe7d89648 Mon Sep 17 00:00:00 2001 From: John Safranek Date: Thu, 27 Dec 2012 19:51:06 -0800 Subject: [PATCH] updated comment for aead in SanityCheckCipherText() --- src/internal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internal.c b/src/internal.c index 42905d1c6..2e5138826 100644 --- a/src/internal.c +++ b/src/internal.c @@ -3139,7 +3139,7 @@ static int SanityCheckCipherText(CYASSL* ssl, word32 encryptSz) minLength = ssl->specs.hash_size; } else if (ssl->specs.cipher_type == aead) { - minLength = ssl->specs.block_size; /* actual min? */ + minLength = ssl->specs.block_size; /* explicit IV + implicit IV + CTR*/ } if (encryptSz < minLength) {