diff options
author | Daniel Borkmann <dborkman@redhat.com> | 2013-12-11 05:28:59 -0500 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2013-12-20 07:06:24 -0500 |
commit | fed286110f4bab01f93f06c32951fbc120fb71b1 (patch) | |
tree | c6d084142644b281d53631b5ef6f6f6f1ced2161 /arch/x86/crypto | |
parent | 369f3dabad95aaa3b04ec390d5489d9d46e51395 (diff) |
crypto: arch - use crypto_memneq instead of memcmp
Replace remaining occurences (just as we did in crypto/) under arch/*/crypto/
that make use of memcmp() for comparing keys or authentication tags for
usage with crypto_memneq(). It can simply be used as a drop-in replacement
for the normal memcmp().
Signed-off-by: Daniel Borkmann <dborkman@redhat.com>
Cc: James Yonan <james@openvpn.net>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'arch/x86/crypto')
-rw-r--r-- | arch/x86/crypto/aesni-intel_glue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/crypto/aesni-intel_glue.c b/arch/x86/crypto/aesni-intel_glue.c index 835488b745ee..aba34b8e514c 100644 --- a/arch/x86/crypto/aesni-intel_glue.c +++ b/arch/x86/crypto/aesni-intel_glue.c | |||
@@ -1001,7 +1001,7 @@ static int __driver_rfc4106_decrypt(struct aead_request *req) | |||
1001 | authTag, auth_tag_len); | 1001 | authTag, auth_tag_len); |
1002 | 1002 | ||
1003 | /* Compare generated tag with passed in tag. */ | 1003 | /* Compare generated tag with passed in tag. */ |
1004 | retval = memcmp(src + tempCipherLen, authTag, auth_tag_len) ? | 1004 | retval = crypto_memneq(src + tempCipherLen, authTag, auth_tag_len) ? |
1005 | -EBADMSG : 0; | 1005 | -EBADMSG : 0; |
1006 | 1006 | ||
1007 | if (one_entry_in_sg) { | 1007 | if (one_entry_in_sg) { |