Home | History | Annotate | Download | only in base

Lines Matching refs:ssl

12 #include <openssl/ssl.h>
308 // the SSL object owns the bio now
620 bool OpenSSLAdapter::VerifyServerName(SSL* ssl, const char* host,
628 X509* certificate = SSL_get_peer_certificate(ssl);
644 SSL_CIPHER_description(SSL_get_current_cipher(ssl), NULL, 128);
732 bool OpenSSLAdapter::SSLPostConnectionCheck(SSL* ssl, const char* host) {
733 bool ok = VerifyServerName(ssl, host, ignore_bad_cert());
736 ok = (SSL_get_verify_result(ssl) == X509_V_OK ||
753 OpenSSLAdapter::SSLInfoCallback(const SSL* s, int where, int ret) {
799 SSL* ssl = reinterpret_cast<SSL*>(
804 reinterpret_cast<OpenSSLAdapter*>(SSL_get_app_data(ssl));
825 // Add the root cert to the SSL context