HomeSort by relevance Sort by last modified time
    Searched refs:ssl (Results 126 - 150 of 294) sorted by null

1 2 3 4 56 7 8 91011>>

  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
SSLParametersImpl.java 28 import javax.net.ssl.KeyManager;
29 import javax.net.ssl.KeyManagerFactory;
30 import javax.net.ssl.TrustManager;
31 import javax.net.ssl.TrustManagerFactory;
32 import javax.net.ssl.X509KeyManager;
33 import javax.net.ssl.X509TrustManager;
39 * ssl socket, whether it require/want client authentication or not,
40 * and controls whether new SSL sessions may be established by this
51 // default SSL parameters
55 // client-side SSL session
    [all...]
SSLSessionImpl.java 30 import javax.net.ssl.SSLPeerUnverifiedException;
31 import javax.net.ssl.SSLPermission;
32 import javax.net.ssl.SSLSession;
33 import javax.net.ssl.SSLSessionBindingEvent;
34 import javax.net.ssl.SSLSessionBindingListener;
35 import javax.net.ssl.SSLSessionContext;
42 * @see javax.net.ssl.SSLSession
  /external/wpa_supplicant/
eap_ttls.c 42 struct eap_ssl_data ssl; member in struct:eap_ttls_data
217 eap_tls_ssl_deinit(sm, &data->ssl);
234 resp = os_malloc(sizeof(struct eap_hdr) + 2 + data->ssl.tls_out_limit);
245 res = tls_connection_encrypt(sm->ssl_ctx, data->ssl.conn,
247 pos, data->ssl.tls_out_limit);
346 data->ssl.conn,
358 data->key_data = eap_tls_derive_key(sm, &data->ssl,
383 if (tls_connection_get_keys(sm->ssl_ctx, data->ssl.conn, &keys) ||
436 return eap_tls_derive_key(sm, &data->ssl, "ttls challenge",
441 if (tls_connection_get_keys(sm->ssl_ctx, data->ssl.conn, &keys) |
    [all...]
eap_fast.c 91 struct eap_ssl_data ssl; member in struct:eap_fast_data
703 if (eap_tls_ssl_init(sm, &data->ssl, config)) {
704 wpa_printf(MSG_INFO, "EAP-FAST: Failed to initialize SSL.");
712 tls_connection_enable_workaround(sm->ssl_ctx, data->ssl.conn);
741 eap_tls_ssl_deinit(sm, &data->ssl);
764 resp = os_malloc(sizeof(struct eap_hdr) + 2 + data->ssl.tls_out_limit);
775 res = tls_connection_encrypt(sm->ssl_ctx, data->ssl.conn,
777 pos, data->ssl.tls_out_limit);
859 tls_connection_get_keys(sm->ssl_ctx, data->ssl.conn, &keys) ||
916 return tls_connection_set_master_key(sm->ssl_ctx, data->ssl.conn
    [all...]
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
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...]
SSLContext2Test.java 18 package tests.api.javax.net.ssl;
26 import javax.net.ssl.KeyManager;
27 import javax.net.ssl.SSLContext;
28 import javax.net.ssl.SSLEngine;
29 import javax.net.ssl.TrustManager;
KeyManagerFactory1Test.java 18 package tests.api.javax.net.ssl;
36 import javax.net.ssl.KeyStoreBuilderParameters;
37 import javax.net.ssl.ManagerFactoryParameters;
38 import javax.net.ssl.KeyManager;
39 import javax.net.ssl.KeyManagerFactory;
40 import javax.net.ssl.KeyManagerFactorySpi;
71 .getProperty("ssl.KeyManagerFactory.algorithm");
104 * @tests avax.net.ssl.KeyManagerFactory#getAlgorithm()
152 Security.setProperty("ssl.KeyManagerFactory.algorithm", defA);
158 Security.setProperty("ssl.KeyManagerFactory.algorithm", def)
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
eap_fast.c 37 struct eap_ssl_data ssl; member in struct:eap_fast_data
281 sks = eap_fast_derive_key(sm->ssl_ctx, data->ssl.conn, "key expansion",
307 eap_fast_derive_key(sm->ssl_ctx, data->ssl.conn,
436 if (eap_server_tls_ssl_init(sm, &data->ssl, 0)) {
437 wpa_printf(MSG_INFO, "EAP-FAST: Failed to initialize SSL.");
442 if (tls_connection_set_cipher_list(sm->ssl_ctx, data->ssl.conn,
450 if (tls_connection_set_session_ticket_cb(sm->ssl_ctx, data->ssl.conn,
513 eap_server_tls_ssl_deinit(sm, &data->ssl);
555 if (tls_get_cipher(sm->ssl_ctx, data->ssl.conn, cipher, sizeof(cipher))
819 encr = eap_server_tls_encrypt(sm, &data->ssl, wpabuf_mhead(plain)
    [all...]
  /libcore/luni/src/test/java/libcore/javax/net/ssl/
SSLContextTest.java 17 package libcore.javax.net.ssl;
24 import javax.net.ssl.SSLContext;
25 import javax.net.ssl.SSLEngine;
26 import javax.net.ssl.SSLParameters;
27 import javax.net.ssl.SSLServerSocketFactory;
28 import javax.net.ssl.SSLSessionContext;
29 import javax.net.ssl.SSLSocketFactory;
KeyManagerFactoryTest.java 17 package libcore.javax.net.ssl;
29 import javax.net.ssl.KeyManager;
30 import javax.net.ssl.KeyManagerFactory;
31 import javax.net.ssl.X509ExtendedKeyManager;
32 import javax.net.ssl.X509KeyManager;
SSLEngineTest.java 17 package libcore.javax.net.ssl;
23 import javax.net.ssl.SSLContext;
24 import javax.net.ssl.SSLEngine;
25 import javax.net.ssl.SSLEngineResult.HandshakeStatus;
26 import javax.net.ssl.SSLException;
27 import javax.net.ssl.SSLHandshakeException;
28 import javax.net.ssl.SSLParameters;
29 import javax.net.ssl.SSLSession;
SSLParametersTest.java 17 package libcore.javax.net.ssl;
20 import javax.net.ssl.SSLParameters;
  /frameworks/base/core/java/android/net/http/
HttpsConnection.java 36 import javax.net.ssl.SSLException;
37 import javax.net.ssl.SSLSocket;
38 import javax.net.ssl.SSLSocketFactory;
39 import javax.net.ssl.TrustManager;
40 import javax.net.ssl.X509TrustManager;
57 * SSL socket factory
71 * @param sessionDir directory to cache SSL sessions
77 Log.d("HttpsConnection", "Caching SSL sessions in "
119 * Object to wait on when suspending the SSL connection
130 * True if the connection attempt should be aborted due to an ssl
    [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
284 static int tls1_generate_key_block(SSL *s, unsigned char *km,
309 int tls1_change_cipher_state(SSL *s, int which)
551 int tls1_setup_key_block(SSL *s)
642 int tls1_enc(SSL *s, int send)
796 int tls1_cert_verify_mac(SSL *s, int md_nid, unsigned char *out
    [all...]
ssl_locl.h 0 /* ssl/ssl_locl.h */
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
165 #include <openssl/ssl.h>
479 RSA *(*rsa_tmp_cb)(SSL *ssl,int is_export,int keysize);
483 DH *(*dh_tmp_cb)(SSL *ssl,int is_export,int keysize)
    [all...]
ssl_sess.c 0 /* ssl/ssl_sess.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
150 SSL_SESSION *SSL_get_session(const SSL *ssl)
153 return(ssl->session);
156 SSL_SESSION *SSL_get1_session(SSL *ssl)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/net/http/
HttpsThroughHttpProxyTest.java 26 import libcore.javax.net.ssl.TestSSLContext;
33 import org.apache.http.conn.ssl.AllowAllHostnameVerifier;
34 import org.apache.http.conn.ssl.SSLSocketFactory;
  /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/net/base/
cert_database_nss.cc 9 #include <ssl.h>
  /external/openssl/apps/
errstr.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>
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
eap_peap.c 40 struct eap_ssl_data ssl; member in struct:eap_peap_data
168 if (eap_peer_tls_ssl_init(sm, &data->ssl, config)) {
169 wpa_printf(MSG_INFO, "EAP-PEAP: Failed to initialize SSL.");
186 eap_peer_tls_ssl_deinit(sm, &data->ssl);
265 tls_connection_resumed(sm->ssl_ctx, data->ssl.conn)) {
775 eap_peer_tls_reset_input(&data->ssl);
796 return eap_peer_tls_encrypt(sm, &data->ssl, EAP_TYPE_PEAP,
801 res = eap_peer_tls_decrypt(sm, &data->ssl, in_data, &in_decrypted);
1017 if (eap_peer_tls_encrypt(sm, &data->ssl, EAP_TYPE_PEAP,
1042 pos = eap_peer_tls_process_init(sm, &data->ssl, EAP_TYPE_PEAP, ret
    [all...]
  /libcore/luni/src/main/java/javax/net/ssl/
DefaultSSLSocketFactory.java 18 package javax.net.ssl;
27 * Default inoperative implementation of javax.net.ssl.SSLSocketFactory
HttpsURLConnection.java 18 package javax.net.ssl;
62 * Sets the default SSL socket factory to be used by new instances.
65 * the new default SSL socket factory.
77 * Returns the default SSL socket factory for new instances.
79 * @return the default SSL socket factory for new instances.
108 * Returns the name of the cipher suite negotiated during the SSL handshake.
110 * @return the name of the cipher suite negotiated during the SSL handshake.
199 * Sets the SSL socket factory for this instance.
202 * the SSL socket factory to be used by this instance.
214 * Returns the SSL socket factory used by this instance
    [all...]
SSLServerSocketFactory.java 18 package javax.net.ssl;
27 * The factory for SSL server sockets.
32 // The default SSL socket factory
40 * "ssl.ServerSocketFactory.provider".
51 defaultName = Security.getProperty("ssl.ServerSocketFactory.provider");
102 * SSL connection created by this factory.

Completed in 1640 milliseconds

1 2 3 4 56 7 8 91011>>