From e2833f99a3a4ed17eb92c1c98648da5c65923101 Mon Sep 17 00:00:00 2001 From: Daniel Pouzzner Date: Fri, 14 Jul 2023 09:53:54 -0500 Subject: [PATCH] wolfcrypt/src/asn.c: fix merge conflict between 648f474d83 and 2c9609039d, re -Wconversion in DecodeAuthKeyId(). --- wolfcrypt/src/asn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wolfcrypt/src/asn.c b/wolfcrypt/src/asn.c index e1042f57b..0d4d74165 100644 --- a/wolfcrypt/src/asn.c +++ b/wolfcrypt/src/asn.c @@ -18873,7 +18873,7 @@ static int DecodeAuthKeyId(const byte* input, word32 sz, DecodedCert* cert) /* Get the hash or hash of the hash if wrong size. */ ret = GetHashId(dataASN[AUTHKEYIDASN_IDX_KEYID].data.ref.data, (int)dataASN[AUTHKEYIDASN_IDX_KEYID].data.ref.length, - cert->extAuthKeyId, HashIdAlg((int)cert->signatureOID)); + cert->extAuthKeyId, HashIdAlg(cert->signatureOID)); } #ifdef WOLFSSL_AKID_NAME if (ret == 0 && dataASN[AUTHKEYIDASN_IDX_ISSUER].data.ref.data != NULL) {