/external/chromium_org/chrome/browser/ui/toolbar/ |
toolbar_model_impl.cc | 17 #include "chrome/browser/ssl/ssl_error_info.h" 63 const SSLStatus& ssl = entry->GetSSL(); local 64 switch (ssl.security_style) { 80 if (!!(ssl.content_status & SSLStatus::DISPLAYED_INSECURE_CONTENT)) 82 if (net::IsCertStatusError(ssl.cert_status)) { 83 DCHECK(net::IsCertStatusMinorError(ssl.cert_status)); 86 if ((ssl.cert_status & net::CERT_STATUS_IS_EV) && 87 content::CertStore::GetInstance()->RetrieveCert(ssl.cert_id, NULL))
|
/external/chromium_org/chrome/browser/ui/website_settings/ |
website_settings_unittest.cc | 26 #include "net/ssl/ssl_connection_status_flags.h" 39 // SSL cipher suite like specified in RFC5246 Appendix A.5. "The Cipher Suite". 44 // Clear SSL version bits (Bits 20, 21 and 22). 128 const SSLStatus& ssl() { return ssl_; } function in class:__anon6405::WebsiteSettingsTest 140 infobar_service(), url(), ssl(), cert_store()));
|
/external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/third_party/fancy_urllib/ |
__init__.py | 9 proxies and adds SSL cert validation if the ssl module is present. 33 cert: The SSL certificate (as a dictionary) the host returned. 47 """Return True if we have the SSL package and can validate certificates.""" 49 import ssl namespace 74 import ssl namespace 76 self.cert_reqs = ssl.CERT_REQUIRED 78 self.cert_reqs = ssl.CERT_NONE 102 """Returns a list of valid host globs for an SSL certificate. 105 cert: A dictionary representing an SSL certificate 146 import ssl namespace 345 import ssl namespace [all...] |
/external/chromium_org/net/socket/ |
ssl_session_cache_openssl_unittest.cc | 7 #include <openssl/ssl.h> 17 // session for an existing SSL object. This shall force a call to the 18 // 'generate_session_id' callback from the SSL's session context. 19 // |s| is the target SSL connection handle. 22 extern "C" int ssl_get_new_session(SSL* s, int session); 27 extern "C" void ssl_update_cache(SSL* s, int mode); 33 typedef crypto::ScopedOpenSSL<SSL, SSL_free> ScopedSSL; 35 // Helper class used to associate arbitrary std::string keys with SSL objects. 38 // Return the string associated with a given SSL handle |ssl|, or th 124 SSL* ssl = SSL_new(ctx_.get()); local [all...] |
/external/chromium_org/third_party/openssl/openssl/ssl/ |
bio_ssl.c | 0 /* ssl/bio_ssl.c */ 5 * This package is an SSL implementation written 7 * The implementation was written so as to conform with Netscapes SSL. 12 * lhash, DES, etc., code; not just the SSL code. The SSL documentation 66 #include <openssl/ssl.h> 77 SSL *ssl; /* The ssl handle :-) */ member in struct:bio_ssl_st 88 BIO_TYPE_SSL,"ssl", 144 SSL *ssl; local 236 SSL *ssl; local 306 SSL **sslp,*ssl; local 497 SSL *ssl; local 531 BIO *ret=NULL,*buf=NULL,*ssl=NULL; local 550 BIO *ret=NULL,*con=NULL,*ssl=NULL; local 568 SSL *ssl; local [all...] |
/external/openssl/ssl/ |
bio_ssl.c | 0 /* ssl/bio_ssl.c */ 5 * This package is an SSL implementation written 7 * The implementation was written so as to conform with Netscapes SSL. 12 * lhash, DES, etc., code; not just the SSL code. The SSL documentation 66 #include <openssl/ssl.h> 77 SSL *ssl; /* The ssl handle :-) */ member in struct:bio_ssl_st 88 BIO_TYPE_SSL,"ssl", 144 SSL *ssl; local 232 SSL *ssl; local 298 SSL **sslp,*ssl; local 489 SSL *ssl; local 523 BIO *ret=NULL,*buf=NULL,*ssl=NULL; local 542 BIO *ret=NULL,*con=NULL,*ssl=NULL; local 560 SSL *ssl; local [all...] |
/external/wpa_supplicant_8/src/eap_peer/ |
eap_tls.c | 22 struct eap_ssl_data ssl; member in struct:eap_tls_data 50 if (eap_peer_tls_ssl_init(sm, &data->ssl, config, EAP_TYPE_TLS)) { 51 wpa_printf(MSG_INFO, "EAP-TLS: Failed to initialize SSL."); 87 if (eap_peer_tls_ssl_init(sm, &data->ssl, config, 89 wpa_printf(MSG_INFO, "EAP-TLS: Failed to initialize SSL."); 106 eap_peer_tls_ssl_deinit(sm, &data->ssl); 158 data->key_data = eap_peer_tls_derive_key(sm, &data->ssl, 173 data->session_id = eap_peer_tls_derive_session_id(sm, &data->ssl, 196 pos = eap_peer_tls_process_init(sm, &data->ssl, data->eap_type, ret, 209 res = eap_peer_tls_process_helper(sm, &data->ssl, data->eap_type, 0 [all...] |
/external/wpa_supplicant_8/src/eap_server/ |
eap_server_tls.c | 21 struct eap_ssl_data ssl; member in struct:eap_tls_data 63 if (eap_server_tls_ssl_init(sm, &data->ssl, 1)) { 64 wpa_printf(MSG_INFO, "EAP-TLS: Failed to initialize SSL."); 85 if (eap_server_tls_ssl_init(sm, &data->ssl, 0)) { 86 wpa_printf(MSG_INFO, "EAP-TLS: Failed to initialize SSL."); 102 eap_server_tls_ssl_deinit(sm, &data->ssl); 133 if (data->ssl.state == FRAG_ACK) { 137 if (data->ssl.state == WAIT_FRAG_ACK) { 138 res = eap_server_tls_build_msg(&data->ssl, data->eap_type, 0, 147 if (tls_connection_established(sm->ssl_ctx, data->ssl.conn) [all...] |
/libcore/luni/src/main/java/javax/net/ssl/ |
SSLEngine.java | 18 package javax.net.ssl; 23 * The abstract implementation of secure communications using SSL, TLS, or other 118 * Returns the SSL cipher suite names that are enabled in this engine 121 * @return the SSL cipher suite names that are enabled in this engine 136 * Returns whether new SSL sessions may be established by this engine. 159 * Returns the SSL session for this engine instance. 161 * @return the SSL session for this engine instance. 166 * Returns the SSL cipher suite names that are supported by this engine. 170 * @return the SSL cipher suite names that are supported by this engine. 216 * Sets the SSL cipher suite names that should be enabled in this engin [all...] |
SSLSocket.java | 18 package javax.net.ssl; 26 * The extension of {@code Socket} providing secure protocols like SSL (Secure 122 * Unsupported for SSL because reading from an SSL socket may require 130 * Unsupported for SSL because writing to an SSL socket may require reading 212 * Starts a new SSL handshake on this connection. 274 * Sets whether new SSL sessions may be created by this socket or if 283 * Returns whether new SSL sessions may be created by this socket or if 307 * Sets various SSL handshake parameters based on the SSLParamete [all...] |
/libcore/luni/src/test/java/tests/api/javax/net/ssl/ |
KeyManagerFactory2Test.java | 18 package tests.api.javax.net.ssl; 29 import javax.net.ssl.KeyManagerFactory; 30 import javax.net.ssl.ManagerFactoryParameters;
|
SSLSessionBindingEventTest.java | 18 package tests.api.javax.net.ssl; 23 import javax.net.ssl.SSLPeerUnverifiedException; 24 import javax.net.ssl.SSLSession; 25 import javax.net.ssl.SSLSessionContext; 26 import javax.net.ssl.SSLSessionBindingEvent; 67 * javax.net.ssl.SSLSessionBindingEvent#getName() 78 * javax.net.ssl.SSLSessionBindingEvent#getSession() 89 * @see javax.net.ssl.SSLSession#getApplicationBufferSize() 96 * @see javax.net.ssl.SSLSession#getCipherSuite() 103 * @see javax.net.ssl.SSLSession#getCreationTime( [all...] |
TrustManagerFactory2Test.java | 18 package tests.api.javax.net.ssl; 28 import javax.net.ssl.ManagerFactoryParameters; 29 import javax.net.ssl.TrustManagerFactory;
|
TrustManagerFactorySpiTest.java | 16 package tests.api.javax.net.ssl; 25 import javax.net.ssl.ManagerFactoryParameters; 26 import javax.net.ssl.TrustManager; 27 import javax.net.ssl.TrustManagerFactory; 28 import javax.net.ssl.TrustManagerFactorySpi; 38 * javax.net.ssl.TrustManagerFactorySpi#TrustManagerFactorySpi() 51 * javax.net.ssl.TrustManagerFactorySpi#engineInit(KeyStore ks) 78 * javax.net.ssl.TrustManagerFactorySpi#engineInit(ManagerFactoryParameters spec) 105 * javax.net.ssl.TrustManagerFactorySpi#engineGetTrustManagers()
|
/libcore/support/src/test/java/libcore/javax/net/ssl/ |
TestKeyManager.java | 17 package libcore.javax.net.ssl; 25 import javax.net.ssl.KeyManager; 26 import javax.net.ssl.SSLEngine; 27 import javax.net.ssl.X509ExtendedKeyManager;
|
TestSSLEnginePair.java | 17 package libcore.javax.net.ssl; 21 import javax.net.ssl.SSLEngine; 22 import javax.net.ssl.SSLEngineResult; 23 import javax.net.ssl.SSLEngineResult.HandshakeStatus; 24 import javax.net.ssl.SSLSession;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
poplib.py | 27 # POP SSL PORT 312 import ssl namespace 318 """POP3 client class over SSL connection 322 hostname - the hostname of the pop3 over ssl server 352 self.sslobj = ssl.wrap_socket(self.sock, self.keyfile, self.certfile)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
poplib.py | 27 # POP SSL PORT 312 import ssl namespace 318 """POP3 client class over SSL connection 322 hostname - the hostname of the pop3 over ssl server 352 self.sslobj = ssl.wrap_socket(self.sock, self.keyfile, self.certfile)
|
/external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/ |
HandshakeCompletedEventTest.java | 18 package org.apache.harmony.xnet.tests.javax.net.ssl; 24 import javax.net.ssl.HandshakeCompletedEvent; 25 import javax.net.ssl.SSLPeerUnverifiedException; 26 import javax.net.ssl.SSLSession; 27 import javax.net.ssl.SSLSocket; 28 import javax.net.ssl.SSLSocketFactory;
|
KeyManagerFactory1Test.java | 18 package org.apache.harmony.xnet.tests.javax.net.ssl; 29 import javax.net.ssl.ManagerFactoryParameters; 30 import javax.net.ssl.KeyManager; 31 import javax.net.ssl.KeyManagerFactory; 32 import javax.net.ssl.KeyManagerFactorySpi; 62 .getProperty("ssl.KeyManagerFactory.algorithm"); 110 Security.setProperty("ssl.KeyManagerFactory.algorithm", defA); 116 Security.setProperty("ssl.KeyManagerFactory.algorithm", def); 124 * returns security property "ssl.KeyManagerFactory.algorithm";
|
KeyManagerFactory2Test.java | 18 package org.apache.harmony.xnet.tests.javax.net.ssl; 29 import javax.net.ssl.KeyManagerFactory; 30 import javax.net.ssl.ManagerFactoryParameters;
|
SSLContext2Test.java | 18 package org.apache.harmony.xnet.tests.javax.net.ssl; 27 import javax.net.ssl.SSLContext; 28 import javax.net.ssl.SSLEngine; 29 import javax.net.ssl.KeyManager; 30 import javax.net.ssl.TrustManager;
|
SSLSocketTest.java | 18 package org.apache.harmony.xnet.tests.javax.net.ssl; 25 import javax.net.ssl.SSLParameters; 26 import javax.net.ssl.SSLSession; 27 import javax.net.ssl.SSLSocket; 28 import javax.net.ssl.HandshakeCompletedListener;
|
TrustManagerFactory1Test.java | 18 package org.apache.harmony.xnet.tests.javax.net.ssl; 28 import javax.net.ssl.ManagerFactoryParameters; 29 import javax.net.ssl.TrustManager; 30 import javax.net.ssl.TrustManagerFactory; 31 import javax.net.ssl.TrustManagerFactorySpi; 61 .getProperty("ssl.TrustManagerFactory.algorithm"); 109 Security.setProperty("ssl.TrustManagerFactory.algorithm", defA); 115 Security.setProperty("ssl.TrustManagerFactory.algorithm", def); 121 * Assertions: returns security property "ssl.TrustManagerFactory.algorithm";
|
/external/apache-harmony/x-net/src/test/java/javax/net/ssl/ |
MySSLContextSpi.java | 22 package javax.net.ssl;
|