Question about SSL_CTX_load_verify_locations()

2011-06-13 Thread Yan, Bob
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

Re: Question about SSL_CTX_load_verify_locations

2002-09-24 Thread Xperex Tim
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

Question about SSL_CTX_load_verify_locations

2002-09-23 Thread Paul E. Bible
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