Hello, developer. I now know that the wolfSSL_CTX_EnableCRL API can be used to enable CRL revocation checking. How can I obtain the results after the revocation check, such as whether it succeeded or failed, after calling wolfSSL_CTX_EnableCRL?

Hello developer, I used

 long verify_result = wolfSSL_get_verify_result(ssl)

; from wolfSSL to check the certificate revocation status, and I have already included

#include <wolfssl/ssl.h>

. Why do I still get the following error?

/usr/bin/ld: /tmp/ccjSsmqw.o: in function `main':
wolfssl_crl_test.c:(.text+0x55f): undefined reference to `wolfSSL_get_verify_result'
collect2: error: ld returned 1 exit status

Hello, developer. Can you tell me if the command cmake .. -DENABLE_CRL=ON -DCMAKE can enable CRL?

Hello, developer. When I use the wolfSSL_CTX_LoadCRL and wolfSSL_CTX_EnableCRL functions from wolfSSL, I get the following error:

Severity: Error

Code: LNK2019

Description: Unresolved external symbol wolfSSL_CTX_EnableCRL referenced in function main.

I have already linked the package directory. What could be causing this issue, and how should I resolve it?

Hello, developer:
The default certificate revocation mechanism used by wolfSSL is what? Or does it default to not enabling any certificate revocation mechanism?

Hello developer, if wolfSSL is built without using the --enable-crl option to enable CRL, does wolfSSL default to using OCSP for certificate revocation?

Hello Developer,

I would like to inquire whether wolfSSL still uses CRLs to validate certificate validity, or if wolfSSL still has the capability to use CRLs for certificate validation.