summaryrefslogtreecommitdiffstats
path: root/crypto/evp/e_aes.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2014-07-17 22:27:50 +0100
committerDr. Stephen Henson <steve@openssl.org>2014-07-17 23:29:14 +0100
commit58f4698f67c33b723a9e99bed1101161a59eea73 (patch)
treed9c889cacefab7b30ef934bf424f0abe2da003e1 /crypto/evp/e_aes.c
parentd12eef15016e49fc09d6c96653c61624e032d1a3 (diff)
Make *Final work for key wrap again.
Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'crypto/evp/e_aes.c')
-rw-r--r--crypto/evp/e_aes.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/evp/e_aes.c b/crypto/evp/e_aes.c
index ce300440a8..3501066b07 100644
--- a/crypto/evp/e_aes.c
+++ b/crypto/evp/e_aes.c
@@ -2097,6 +2097,8 @@ static int aes_wrap_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
{
EVP_AES_WRAP_CTX *wctx = ctx->cipher_data;
size_t rv;
+ if (!in)
+ return 0;
if (inlen % 8)
return -1;
if (ctx->encrypt && inlen < 8)
@@ -2110,8 +2112,6 @@ static int aes_wrap_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
else
return inlen - 8;
}
- if (!in)
- return 0;
if (ctx->encrypt)
rv = CRYPTO_128_wrap(&wctx->ks.ks, wctx->iv, out, in, inlen,
(block128_f)AES_encrypt);