I tried to create a library on linux that uses openssl. When I try to load this dll (*.so on linux) I am getting “undefined symbol: X509_EXTENSION_free” as error. I am bit confused whether its an issue with Openssl or my code implementation.
Share
Probably you are missing a
-lcryptowhen creating your shared library.