Skip to content

Commit e2833f9

Browse files
committed
wolfcrypt/src/asn.c: fix merge conflict between 648f474 and 2c96090, re -Wconversion in DecodeAuthKeyId().
1 parent a96983e commit e2833f9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

wolfcrypt/src/asn.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18873,7 +18873,7 @@ static int DecodeAuthKeyId(const byte* input, word32 sz, DecodedCert* cert)
1887318873
/* Get the hash or hash of the hash if wrong size. */
1887418874
ret = GetHashId(dataASN[AUTHKEYIDASN_IDX_KEYID].data.ref.data,
1887518875
(int)dataASN[AUTHKEYIDASN_IDX_KEYID].data.ref.length,
18876-
cert->extAuthKeyId, HashIdAlg((int)cert->signatureOID));
18876+
cert->extAuthKeyId, HashIdAlg(cert->signatureOID));
1887718877
}
1887818878
#ifdef WOLFSSL_AKID_NAME
1887918879
if (ret == 0 && dataASN[AUTHKEYIDASN_IDX_ISSUER].data.ref.data != NULL) {

0 commit comments

Comments
 (0)