summaryrefslogtreecommitdiff
path: root/crypto/authenc.c
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2007-12-04 20:07:27 +1100
committerHerbert Xu <herbert@gondor.apana.org.au>2008-01-11 08:16:32 +1100
commit45547f16489680fbbe7e7ae97bd148a993f9c11a (patch)
tree500a5af25aa0afa98184d7abb22c2dbbb85f73f9 /crypto/authenc.c
parent828d1e762a275605e4d98ab15e473e4ed84201ed (diff)
downloadlinux-crypto-45547f16489680fbbe7e7ae97bd148a993f9c11a.tar.gz
linux-crypto-45547f16489680fbbe7e7ae97bd148a993f9c11a.zip
[CRYPTO] aead: Return EBADMSG for ICV mismatch
This patch changes gcm/authenc to return EBADMSG instead of EINVAL for ICV mismatches. This convention has already been adopted by IPsec. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/authenc.c')
-rw-r--r--crypto/authenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/authenc.c b/crypto/authenc.c
index 82e03ffa..6c9104eb 100644
--- a/crypto/authenc.c
+++ b/crypto/authenc.c
@@ -200,7 +200,7 @@ auth_unlock:
authsize = crypto_aead_authsize(authenc);
scatterwalk_map_and_copy(ihash, src, cryptlen, authsize, 0);
- return memcmp(ihash, ohash, authsize) ? -EINVAL : 0;
+ return memcmp(ihash, ohash, authsize) ? -EBADMSG: 0;
}
static void crypto_authenc_decrypt_done(struct crypto_async_request *req,