HomeSort by relevance Sort by last modified time
    Searched refs:ssl (Results 76 - 100 of 432) sorted by null

1 2 34 5 6 7 8 91011>>

  /libcore/luni/src/test/java/libcore/javax/net/ssl/
SSLSocketTest.java 17 package libcore.javax.net.ssl;
33 import javax.net.ssl.HandshakeCompletedEvent;
34 import javax.net.ssl.HandshakeCompletedListener;
35 import javax.net.ssl.KeyManager;
36 import javax.net.ssl.SSLContext;
37 import javax.net.ssl.SSLException;
38 import javax.net.ssl.SSLHandshakeException;
39 import javax.net.ssl.SSLParameters;
40 import javax.net.ssl.SSLPeerUnverifiedException;
41 import javax.net.ssl.SSLHandshakeException
56 SSLSocket ssl = (SSLSocket) sf.createSocket(); local
190 SSLSocket ssl = (SSLSocket) sf.createSocket(); local
198 SSLSocket ssl = (SSLSocket) sf.createSocket(); local
223 SSLSocket ssl = (SSLSocket) sf.createSocket(); local
231 SSLSocket ssl = (SSLSocket) sf.createSocket(); local
239 SSLSocket ssl = (SSLSocket) sf.createSocket(); local
263 SSLSocket ssl = (SSLSocket) sf.createSocket(); local
839 SSLSocket ssl = (SSLSocket) sf.createSocket(); local
860 SSLSocket ssl = (SSLSocket) sf.createSocket(); local
    [all...]
  /cts/tests/tests/net/src/android/net/http/cts/
SslCertificateTest.java 192 SslCertificate ssl = new SslCertificate("c=129", "e=weji", date1, date2); local
193 Bundle saved = SslCertificate.saveState(ssl);
203 assertEquals(ssl.getValidNotAfter(), restored.getValidNotAfter());
204 assertEquals(ssl.getValidNotBefore(), restored.getValidNotBefore());
214 SslCertificate ssl = new SslCertificate(TO, BY, date1, date2); local
215 DName issuedTo = ssl.getIssuedTo();
216 DName issuedBy = ssl.getIssuedBy();
228 assertEquals(date1, ssl.getValidNotBeforeDate());
229 assertEquals(date2, ssl.getValidNotAfterDate());
232 assertEquals(EXPECTED, ssl.toString())
    [all...]
SslCertificate_DNameTest.java 34 SslCertificate ssl = new SslCertificate(TO, BY, DateFormat.getInstance().format( local
36 DName issuedTo = ssl.getIssuedTo();
  /external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
HttpsURLConnectionTest.java 19 package org.apache.harmony.xnet.tests.javax.net.ssl;
25 import javax.net.ssl.HostnameVerifier;
26 import javax.net.ssl.HttpsURLConnection;
27 import javax.net.ssl.SSLPeerUnverifiedException;
28 import javax.net.ssl.SSLSocketFactory;
113 * @see javax.net.ssl.HttpsURLConnection#getCipherSuite()
121 * @see javax.net.ssl.HttpsURLConnection#getLocalCertificates()
129 * @see javax.net.ssl.HttpsURLConnection#getServerCertificates()
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;
SSLHandshakeExceptionTest.java 18 package org.apache.harmony.xnet.tests.javax.net.ssl;
20 import javax.net.ssl.SSLHandshakeException;
SSLKeyExceptionTest.java 18 package org.apache.harmony.xnet.tests.javax.net.ssl;
20 import javax.net.ssl.SSLKeyException;
SSLPeerUnverifiedExceptionTest.java 18 package org.apache.harmony.xnet.tests.javax.net.ssl;
20 import javax.net.ssl.SSLPeerUnverifiedException;
SSLProtocolExceptionTest.java 18 package org.apache.harmony.xnet.tests.javax.net.ssl;
20 import javax.net.ssl.SSLProtocolException;
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
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...]
CertPathTrustManagerParametersTest.java 18 package tests.api.javax.net.ssl;
21 import javax.net.ssl.CertPathTrustManagerParameters;
33 * javax.net.ssl.CertPathTrustManagerParameters#
60 * javax.net.ssl.CertPathTrustManagerParameters#getParameters()
  /frameworks/base/core/java/android/net/
SSLCertificateSocketFactory.java 27 import javax.net.ssl.HostnameVerifier;
28 import javax.net.ssl.HttpsURLConnection;
29 import javax.net.ssl.KeyManager;
30 import javax.net.ssl.SSLException;
31 import javax.net.ssl.SSLPeerUnverifiedException;
32 import javax.net.ssl.SSLSession;
33 import javax.net.ssl.SSLSocket;
34 import javax.net.ssl.SSLSocketFactory;
35 import javax.net.ssl.TrustManager;
36 import javax.net.ssl.X509TrustManager
188 SSLSocket ssl = (SSLSocket) socket; local
    [all...]
  /external/openssl/ssl/
ssl_rsa.c 0 /* ssl/ssl_rsa.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
69 int SSL_use_certificate(SSL *ssl, X509 *x)
76 if (!ssl_cert_inst(&ssl->cert))
81 return(ssl_set_cert(ssl->cert,x));
85 int SSL_use_certificate_file(SSL *ssl, const char *file, int type
    [all...]
srtp.h 0 /* ssl/tls1.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
134 int SSL_set_tlsext_use_srtp(SSL *ctx, const char *profiles);
135 SRTP_PROTECTION_PROFILE *SSL_get_selected_srtp_profile(SSL *s);
137 STACK_OF(SRTP_PROTECTION_PROFILE) *SSL_get_srtp_profiles(SSL *ssl); variable
138 SRTP_PROTECTION_PROFILE *SSL_get_selected_srtp_profile(SSL *s)
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
eap_tls.c 27 struct eap_ssl_data ssl; member in struct:eap_tls_data
68 if (eap_server_tls_ssl_init(sm, &data->ssl, 1)) {
69 wpa_printf(MSG_INFO, "EAP-TLS: Failed to initialize SSL.");
83 eap_server_tls_ssl_deinit(sm, &data->ssl);
115 if (data->ssl.state == FRAG_ACK) {
119 if (data->ssl.state == WAIT_FRAG_ACK) {
120 res = eap_server_tls_build_msg(&data->ssl, EAP_TYPE_TLS, 0,
129 if (tls_connection_established(sm->ssl_ctx, data->ssl.conn))
138 res = eap_server_tls_build_msg(&data->ssl, EAP_TYPE_TLS, 0, id);
141 if (data->established && data->ssl.state != WAIT_FRAG_ACK)
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_server_tls.c 21 struct eap_ssl_data ssl; member in struct:eap_tls_data
62 if (eap_server_tls_ssl_init(sm, &data->ssl, 1)) {
63 wpa_printf(MSG_INFO, "EAP-TLS: Failed to initialize SSL.");
77 eap_server_tls_ssl_deinit(sm, &data->ssl);
109 if (data->ssl.state == FRAG_ACK) {
113 if (data->ssl.state == WAIT_FRAG_ACK) {
114 res = eap_server_tls_build_msg(&data->ssl, EAP_TYPE_TLS, 0,
123 if (tls_connection_established(sm->ssl_ctx, data->ssl.conn))
132 res = eap_server_tls_build_msg(&data->ssl, EAP_TYPE_TLS, 0, id);
135 if (data->established && data->ssl.state != WAIT_FRAG_ACK)
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
SSLSocketFactory.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/conn/ssl/SSLSocketFactory.java $
30 * This class was copied from org.apache.http.conn.ssl, because it didn't have a suitable
38 import org.apache.http.conn.ssl.AllowAllHostnameVerifier;
39 import org.apache.http.conn.ssl.BrowserCompatHostnameVerifier;
40 import org.apache.http.conn.ssl.StrictHostnameVerifier;
41 import org.apache.http.conn.ssl.X509HostnameVerifier;
45 import javax.net.ssl.HttpsURLConnection;
46 import javax.net.ssl.KeyManager;
47 import javax.net.ssl.KeyManagerFactory;
48 import javax.net.ssl.SSLContext
    [all...]
  /development/libraries/stereocamera/
source.properties 9 Pkg.SourceUrl=https\://dl-ssl.google.com/android/repository/repository.xml
  /external/openssl/apps/
ciphers.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
67 #include <openssl/ssl.h>
74 " -v - verbose mode, a textual listing of the SSL/TLS ciphers in OpenSSL\n",
92 SSL *ssl=NULL; local
172 ssl=SSL_new(ctx);
173 if (ssl == NULL) goto err
    [all...]
  /libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
KeyManagerFactorySpiImpl.java 9 import javax.net.ssl.KeyManager;
10 import javax.net.ssl.ManagerFactoryParameters;
TrustManagerFactorySpiImpl.java 7 import javax.net.ssl.ManagerFactoryParameters;
8 import javax.net.ssl.TrustManager;
  /external/chromium/chrome/browser/ui/views/location_bar/
click_handler.cc 34 tab->ShowPageInfo(nav_entry->url(), nav_entry->ssl(), true);
  /external/nist-sip/java/gov/nist/javax/sip/
ClientTransactionExt.java 6 import javax.net.ssl.SSLPeerUnverifiedException;
TransactionExt.java 6 import javax.net.ssl.SSLPeerUnverifiedException;
48 * Return the Cipher Suite that was used for the SSL handshake.
  /external/openssl/include/openssl/
srtp.h 0 /* ssl/tls1.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
134 int SSL_set_tlsext_use_srtp(SSL *ctx, const char *profiles);
135 SRTP_PROTECTION_PROFILE *SSL_get_selected_srtp_profile(SSL *s);
137 STACK_OF(SRTP_PROTECTION_PROFILE) *SSL_get_srtp_profiles(SSL *ssl); variable
138 SRTP_PROTECTION_PROFILE *SSL_get_selected_srtp_profile(SSL *s)
    [all...]

Completed in 1189 milliseconds

1 2 34 5 6 7 8 91011>>