raboon
raboon

Reputation: 25

"No source available for SSL_CTX_load_verify_locations()" using OpenSSL

I'm trying to make a secure connection with SSL. I downloaded the source code from the IBM site and run the withssl file.

I receive an Error Message while debugging:

No source available for "SSL_CTX_load_verify_locations() at 0x3b66a361b0"

What does this mean and how do I resolve it?

Upvotes: 0

Views: 314

Answers (1)

dwalter
dwalter

Reputation: 7478

Assuming we have the same code (downloaded it from the link you provided, which will not work without minor modifications, adding SSL_library_init() should do the trick for newer version).

Make sure the TrustStore.pem file is in the same directory as the executable or change the path in the code accordingly.

Upvotes: 2

Related Questions