Home | History | Annotate | Download | only in base

Lines Matching refs:ssl

40 #include <openssl/ssl.h>
448 SSL_set_bio(ssl_, bio, bio); // the SSL object owns the bio now.
536 // Add the root cert to the SSL context
577 // Get our SSL structure from the store
578 SSL* ssl = reinterpret_cast<SSL*>(X509_STORE_CTX_get_ex_data(
583 reinterpret_cast<OpenSSLStreamAdapter*>(SSL_get_app_data(ssl));
620 bool OpenSSLStreamAdapter::SSLPostConnectionCheck(SSL* ssl,
626 ok = OpenSSLAdapter::VerifyServerName(ssl, server_name, ignore_bad_cert());
629 ok = (SSL_get_verify_result(ssl) == X509_V_OK ||
639 LOG(LS_ERROR) << "SSL_get_verify_result(ssl) = "
640 << SSL_get_verify_result(ssl);