Hi,
I am using "SSL_CTX_load_verify_locations(ssl_ctx, NULL, CApath)" function to
load the CA certificates from the "CApath" directory. Since the certificates in
CApath are only looked up when required, my questions is that, is any openssl
function can be used to load all trusted CA certificate
You need to SSL_CTX_new() before using the context with
SSL_CTX_load_verify_locations().
--- "Paul E. Bible" <[EMAIL PROTECTED]> wrote:
> Hi there,
>
> I'm currently working on an application that uses SSL for its Internet
> communications. In this applications, I am verifying the certificat
Hi there,
I'm currently working on an application that uses SSL for its Internet
communications. In this applications, I am verifying the certificates
being used, which requires that I execute the
SSL_CTX_load_verify_locations() method as shown below:
#define CAFILE "root.pem"
#defi