Topic: WOLFCRYPT_ONLY and wolfSSL_Init()

If the library is built using WOLFCRYPT_ONLY do I need to execute wolfSSL_Init() before I make any wc_* calls?
I don't think I do, but there may be a parallel wc_Init() call(?)

Share

Re: WOLFCRYPT_ONLY and wolfSSL_Init()

Hi ACV,

You can instead call `wolfCrypt_Init` and `wolfCrypt_Cleanup`. For most use-cases you are not required to call these, but I recommend it to future proof yourself.

Thanks,
David Garske, wolfSSL

Share