From: Andy Polyakov Date: Mon, 13 Aug 2012 15:07:37 +0000 (+0000) Subject: gcm128.c: fix AAD-only case with AAD length not divisible by 16. X-Git-Tag: master-pre-reformat~1681 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9ddd859d2a0f987ca63ff7b83a723b39f1dfa8fd;p=openssl gcm128.c: fix AAD-only case with AAD length not divisible by 16. PR: 2859 Submitted by: John Foley --- diff --git a/crypto/modes/gcm128.c b/crypto/modes/gcm128.c index 025c7f8897..f8dd497f87 100644 --- a/crypto/modes/gcm128.c +++ b/crypto/modes/gcm128.c @@ -1401,7 +1401,7 @@ int CRYPTO_gcm128_finish(GCM128_CONTEXT *ctx,const unsigned char *tag, void (*gcm_gmult_p)(u64 Xi[2],const u128 Htable[16]) = ctx->gmult; #endif - if (ctx->mres) + if (ctx->mres || ctx->ares) GCM_MUL(ctx,Xi); if (is_endian.little) {