Topic: how to extra a rsa public key from a certificate
Hi, I am trying to extra the rsa public key from a certificate. I found the following method in test.c:
DecodedCert cert;
InitDecodedCert(....);
ParseCert(....);
RsaPublicKeyDecode(....);
This method requires to define WOLFSSL_TEST_CERT. How to define and enable it?
Thanks a lot!