From: Jason A. Donenfeld Date: Sun, 11 Jun 2017 21:20:23 +0000 (+0200) Subject: crypto: rsa-pkcs1pad - use constant time memory comparison for MACs X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=fec17cb2231733174e039ad9054fa16bb358e2ec;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git crypto: rsa-pkcs1pad - use constant time memory comparison for MACs Otherwise, we enable all sorts of forgeries via timing attack. Signed-off-by: Jason A. Donenfeld Suggested-by: Stephan Müller Cc: stable@vger.kernel.org Cc: Herbert Xu Cc: linux-crypto@vger.kernel.org Signed-off-by: Herbert Xu --- diff --git a/crypto/rsa-pkcs1pad.c b/crypto/rsa-pkcs1pad.c index 044bcfa69cba..407c64bdcdd9 100644 --- a/crypto/rsa-pkcs1pad.c +++ b/crypto/rsa-pkcs1pad.c @@ -490,7 +490,7 @@ static int pkcs1pad_verify_complete(struct akcipher_request *req, int err) goto done; pos++; - if (memcmp(out_buf + pos, digest_info->data, digest_info->size)) + if (crypto_memneq(out_buf + pos, digest_info->data, digest_info->size)) goto done; pos += digest_info->size;