HomeSort by relevance Sort by last modified time
    Searched refs:ssl (Results 251 - 275 of 637) sorted by null

<<11121314151617181920>>

  /external/okhttp/src/main/java/com/squareup/okhttp/
Address.java 22 import javax.net.ssl.HostnameVerifier;
23 import javax.net.ssl.SSLSocketFactory;
32 * SSL socket factory and hostname verifier.
76 * Returns the SSL socket factory, or null if this is not an HTTPS
  /libcore/luni/src/test/java/libcore/javax/net/ssl/
SSLParametersTest.java 17 package libcore.javax.net.ssl;
20 import javax.net.ssl.SSLParameters;
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
SSLExceptionTest.java 18 package tests.api.javax.net.ssl;
20 import javax.net.ssl.SSLException;
SSLSocketFactoryTest.java 16 package tests.api.javax.net.ssl;
24 import javax.net.ssl.SSLSocketFactory;
42 * javax.net.ssl.SSLSocketFactory#SSLSocketFactory()
54 * javax.net.ssl.SSLSocketFactory#getDefault()
62 * javax.net.ssl.SSLSocketFactory#createSocket(Socket s, String host, int port, boolean autoClose)
114 * javax.net.ssl.SSLSocketFactory#getDefaultCipherSuites()
127 * javax.net.ssl.SSLSocketFactory#getSupportedCipherSuites()
X509TrustManagerTest.java 1 package tests.api.javax.net.ssl;
7 import javax.net.ssl.X509TrustManager;
35 xtm.checkClientTrusted(xcert, "SSL");
42 xtm.checkClientTrusted(xcert, "SSL");
62 * javax.net.ssl.X509TrustManager#checkClientTrusted(X509Certificate[] chain, String authType)
69 xtm.checkClientTrusted(xcert, "SSL");
76 * javax.net.ssl.X509TrustManager#checkClientTrusted(X509Certificate[] chain, String authType)
81 xtm.checkClientTrusted(xcert, "SSL");
85 * javax.net.ssl.X509TrustManager#checkServerTrusted(X509Certificate[] chain, String authType)
92 xtm.checkServerTrusted(xcert, "SSL");
    [all...]
SSLContext1Test.java 18 package tests.api.javax.net.ssl;
30 import javax.net.ssl.KeyManager;
31 import javax.net.ssl.KeyManagerFactory;
32 import javax.net.ssl.SSLContext;
33 import javax.net.ssl.SSLContextSpi;
34 import javax.net.ssl.SSLEngine;
35 import javax.net.ssl.SSLServerSocketFactory;
36 import javax.net.ssl.SSLSessionContext;
37 import javax.net.ssl.SSLSocketFactory;
38 import javax.net.ssl.TrustManager
    [all...]
  /libcore/support/src/test/java/libcore/javax/net/ssl/
TestSSLSocketPair.java 17 package libcore.javax.net.ssl;
25 import javax.net.ssl.SSLSocket;
  /external/chromium_org/net/spdy/
spdy_session_unittest.cc 210 SSLSocketDataProvider ssl(SYNCHRONOUS, OK);
211 session_deps_.deterministic_socket_factory->AddSSLSocketDataProvider(&ssl);
244 SSLSocketDataProvider ssl(SYNCHRONOUS, OK);
245 session_deps_.deterministic_socket_factory->AddSSLSocketDataProvider(&ssl);
281 SSLSocketDataProvider ssl(SYNCHRONOUS, OK);
282 session_deps_.deterministic_socket_factory->AddSSLSocketDataProvider(&ssl);
365 SSLSocketDataProvider ssl(SYNCHRONOUS, OK);
366 session_deps_.deterministic_socket_factory->AddSSLSocketDataProvider(&ssl);
447 SSLSocketDataProvider ssl(SYNCHRONOUS, OK);
448 session_deps_.deterministic_socket_factory->AddSSLSocketDataProvider(&ssl);
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_peap.c 34 struct eap_ssl_data ssl; member in struct:eap_peap_data
164 if (eap_peer_tls_ssl_init(sm, &data->ssl, config, EAP_TYPE_PEAP)) {
165 wpa_printf(MSG_INFO, "EAP-PEAP: Failed to initialize SSL.");
182 eap_peer_tls_ssl_deinit(sm, &data->ssl);
262 tls_connection_resumed(sm->ssl_ctx, data->ssl.conn)) {
774 eap_peer_tls_reset_input(&data->ssl);
795 return eap_peer_tls_encrypt(sm, &data->ssl, EAP_TYPE_PEAP,
800 res = eap_peer_tls_decrypt(sm, &data->ssl, in_data, &in_decrypted);
1016 if (eap_peer_tls_encrypt(sm, &data->ssl, EAP_TYPE_PEAP,
1041 pos = eap_peer_tls_process_init(sm, &data->ssl, EAP_TYPE_PEAP, ret
    [all...]
  /external/chromium_org/net/socket/
ssl_client_socket_openssl.cc 12 #include <openssl/ssl.h>
25 #include "net/ssl/openssl_client_key_store.h"
26 #include "net/ssl/ssl_cert_request_info.h"
27 #include "net/ssl/ssl_connection_status_flags.h"
28 #include "net/ssl/ssl_info.h"
71 // Returns the net SSL version number (see ssl_connection_status_flags.h) for
72 // this SSL connection.
73 int GetNetSSLVersion(SSL* ssl) {
74 switch (SSL_version(ssl)) {
    [all...]
  /external/chromium_org/third_party/openssl/openssl/ssl/
t1_enc.c 0 /* ssl/t1_enc.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
294 static int tls1_generate_key_block(SSL *s, unsigned char *km,
319 int tls1_change_cipher_state(SSL *s, int which)
578 int tls1_setup_key_block(SSL *s)
679 int tls1_enc(SSL *s, int send)
863 int tls1_cert_verify_mac(SSL *s, int md_nid, unsigned char *out
    [all...]
  /external/openssl/ssl/
t1_enc.c 0 /* ssl/t1_enc.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
294 static int tls1_generate_key_block(SSL *s, unsigned char *km,
319 int tls1_change_cipher_state(SSL *s, int which)
578 int tls1_setup_key_block(SSL *s)
679 int tls1_enc(SSL *s, int send)
863 int tls1_cert_verify_mac(SSL *s, int md_nid, unsigned char *out
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
SecureCacheResponseTest.java 27 import javax.net.ssl.SSLPeerUnverifiedException;
  /external/apache-harmony/x-net/src/test/impl/java/org/apache/harmony/xnet/tests/provider/jsse/
KeyManagerFactoryImplTest.java 24 import javax.net.ssl.KeyManager;
44 String def_keystore = System.getProperty("javax.net.ssl.keyStore");
46 System.setProperty("javax.net.ssl.keyStore", "abc");
52 System.clearProperty("javax.net.ssl.keyStore");
54 System.setProperty("javax.net.ssl.keyStore", def_keystore);
  /external/apache-harmony/x-net/src/test/impl/java.injected/javax/net/ssl/
DefaultSSLServerSocketFactoryTest.java 19 package javax.net.ssl;
DefaultSSLSocketFactoryTest.java 19 package javax.net.ssl;
SSLServerSocketFactoryTest.java 22 package javax.net.ssl;
45 String defaultName = Security.getProperty("ssl.ServerSocketFactory.provider");
SSLSocketFactoryTest.java 22 package javax.net.ssl;
45 String defaultName = Security.getProperty("ssl.SocketFactory.provider");
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
SSLSessionContextImplTest.java 23 import javax.net.ssl.SSLSession;
  /external/apache-http/src/org/apache/http/conn/
ManagedClientConnection.java 37 import javax.net.ssl.SSLSession;
88 * Obtains the SSL session of the underlying connection, if any.
90 * {@link javax.net.ssl.SSLSocket SSLSocket}, the SSL session of
93 * <b>Note:</b> Whether the underlying socket is an SSL socket
97 * On the other hand, SSL sockets may be considered insecure,
100 * @return the underlying SSL session if available,
126 * to layer the TLS/SSL protocol on top of the tunnelled connection.
129 * would automatically trigger the layering of the TLS/SSL protocol.
171 * connection. This is typically used to create a TLS/SSL connectio
    [all...]
  /external/apache-http/src/org/apache/http/impl/client/
DefaultHttpRequestRetryHandler.java 38 import javax.net.ssl.SSLHandshakeException;
105 // SSL handshake exception
  /external/chromium/chrome/browser/
page_info_model.h 82 const NavigationEntry::SSLStatus& ssl,
  /external/chromium/crypto/
openssl_util.cc 8 #include <openssl/ssl.h>
28 // We allow the SSL environment to leak for multiple reasons:
  /external/chromium/third_party/libjingle/source/talk/base/
opensslstreamadapter.h 35 typedef struct ssl_st SSL;
45 // Static methods to initialize and deinit the SSL library are in
57 // This class does not support the SSL connection restart feature
62 // SSL error, and it has an explicit SSL_CLOSED state. It should not
99 SSL_WAIT, // waiting for the stream to open to start SSL negotiation
100 SSL_CONNECTING, // SSL negotiation in progress
101 SSL_CONNECTED, // SSL stream successfully established
102 SSL_ERROR, // some SSL error occurred, stream is closed
118 // Prepare SSL library, state is SSL_CONNECTING.
120 // Perform SSL negotiation steps
    [all...]
  /external/chromium_org/crypto/
openssl_util.cc 8 #include <openssl/ssl.h>
28 // We allow the SSL environment to leak for multiple reasons:

Completed in 651 milliseconds

<<11121314151617181920>>