I have an application that uses the same trusted certificates across a large number of SSL connections. The current design loads the trusted cert into the cert store within the SSL_CTX for each connection.
What I would like to do is create the X509_STORE during initialization set it into the SSL_CTX structure for each connection. Of course, this is only viable if the store is thread safe. Thanks for the help.
