fixup! tests: add unit coverage for GetCAByAKID

This commit is contained in:
Juliusz Sosinowicz
2025-12-03 13:26:12 +01:00
parent 32c6f8f2a0
commit 22eedeea86

View File

@@ -6694,14 +6694,14 @@ WOLFSSL_LOCAL WC_RNG* WOLFSSL_RSA_GetRNG(WOLFSSL_RSA *rsa, WC_RNG **tmpRNG,
DecodedCert* cert);
#endif
#ifdef WOLFSSL_API_PREFIX_MAP
#define GetCAByAKID wolfSSL_GetCAByAKID
#endif
#ifndef GetCA
WOLFSSL_LOCAL Signer* GetCA(void* vp, byte* hash);
#endif
#if defined(WOLFSSL_AKID_NAME) && !defined(GetCAByAKID)
#ifdef WOLFSSL_API_PREFIX_MAP
#define GetCAByAKID wolfSSL_GetCAByAKID
#endif
WOLFSSL_TEST_VIS Signer* GetCAByAKID(void* vp, const byte* issuer,
word32 issuerSz, const byte* serial, word32 serialSz);
#endif