Fix inclusion guard around wc_RsaSSL_Verify.

The current condition of !WOLFSSL_RSA_VERIFY_ONLY doesn't make sense,
as the verify only case will want this function.

Based on the original change and the context, it looks like this was a
typo meant to be !WOLFSSL_RSA_VERIFY_INLINE.
This commit is contained in:
Kareem
2025-06-11 16:18:22 -07:00
parent e8c110d2ac
commit 304019d28d

View File

@ -3871,7 +3871,7 @@ int wc_RsaSSL_VerifyInline(byte* in, word32 inLen, byte** out, RsaKey* key)
}
#endif
#ifndef WOLFSSL_RSA_VERIFY_ONLY
#ifndef WOLFSSL_RSA_VERIFY_INLINE
int wc_RsaSSL_Verify(const byte* in, word32 inLen, byte* out, word32 outLen,
RsaKey* key)
{