On Sun, 26 Nov 2017, Eric Biggers wrote:
From: Eric Biggers ebiggers@google.com
->pkey_algo used to be an enum, but was changed to a string by commit 4e8ae72a75aa ("X.509: Make algo identifiers text instead of enum"). But two comparisons were not updated. Fix them to use strcmp().
This bug broke signature verification in certain configurations, depending on whether the string constants were deduplicated or not.
Fixes: 4e8ae72a75aa ("X.509: Make algo identifiers text instead of enum") Cc: stable@vger.kernel.org # v4.6+ Signed-off-by: Eric Biggers ebiggers@google.com
crypto/asymmetric_keys/pkcs7_verify.c | 2 +- crypto/asymmetric_keys/x509_public_key.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
Reviewed-by: James Morris james.l.morris@oracle.com