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

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/javax/net/ssl/
KeyManager.java 18 package javax.net.ssl;
ManagerFactoryParameters.java 18 package javax.net.ssl;
TrustManager.java 18 package javax.net.ssl;
HostnameVerifier.java 18 package javax.net.ssl;
29 * Verifies that the specified hostname is allowed within the specified SSL
35 * the SSL session of the connection.
HandshakeCompletedListener.java 18 package javax.net.ssl;
24 * of SSL handshake on an SSL connection.
28 * The callback method that is invoked when a SSL handshake is completed.
31 * the information on the completed SSL handshake event.
SSLHandshakeException.java 18 package javax.net.ssl;
SSLKeyException.java 18 package javax.net.ssl;
21 * The exception that is thrown when an invalid SSL key is encountered.
SSLPeerUnverifiedException.java 18 package javax.net.ssl;
SSLProtocolException.java 18 package javax.net.ssl;
21 * The exception that is thrown when an error in the operation of the SSL
SSLSessionBindingListener.java 18 package javax.net.ssl;
SSLSessionContext.java 18 package javax.net.ssl;
  /external/apache-http/src/org/apache/http/conn/ssl/
X509HostnameVerifier.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/conn/ssl/X509HostnameVerifier.java $
32 package org.apache.http.conn.ssl;
34 import javax.net.ssl.HostnameVerifier;
35 import javax.net.ssl.SSLException;
36 import javax.net.ssl.SSLSession;
37 import javax.net.ssl.SSLSocket;
43 * server's X.509 certificate. Implements javax.net.ssl.HostnameVerifier, but
45 * take String parameters (instead of javax.net.ssl.HostnameVerifier's
64 void verify(String host, SSLSocket ssl) throws IOException;
BrowserCompatHostnameVerifier.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/conn/ssl/BrowserCompatHostnameVerifier.java $
32 package org.apache.http.conn.ssl;
34 import javax.net.ssl.SSLException;
StrictHostnameVerifier.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/conn/ssl/StrictHostnameVerifier.java $
32 package org.apache.http.conn.ssl;
34 import javax.net.ssl.SSLException;
AllowAllHostnameVerifier.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/conn/ssl/AllowAllHostnameVerifier.java $
32 package org.apache.http.conn.ssl;
  /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
485 SSL *ssl; local
519 BIO *ret=NULL,*buf=NULL,*ssl=NULL; local
537 BIO *ret=NULL,*con=NULL,*ssl=NULL; local
554 SSL *ssl; local
    [all...]
ssl_err2.c 0 /* ssl/ssl_err2.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
61 #include <openssl/ssl.h>
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
SSLSocketTest.java 16 package tests.api.javax.net.ssl;
24 import javax.net.ssl.*;
39 import tests.api.javax.net.ssl.HandshakeCompletedEventTest.TestTrustManager;
54 * @tests javax.net.ssl.SSLSocket#SSLSocket()
64 SSLSocket ssl = getSSLSocket(); local
73 * @tests javax.net.ssl.SSLSocket#SSLSocket(InetAddress address, int port)
82 SSLSocket ssl; local
86 ssl = getSSLSocket(InetAddress.getLocalHost(), sport);
87 assertNotNull(ssl);
88 assertEquals(sport, ssl.getPort())
122 SSLSocket ssl; local
240 SSLSocket ssl; local
289 SSLSocket ssl; local
373 SSLSocket ssl = getSSLSocket(); local
399 SSLSocket ssl = getSSLSocket(); local
444 SSLSocket ssl = getSSLSocket(); local
473 SSLSocket ssl = getSSLSocket(); local
501 SSLSocket ssl = getSSLSocket(); local
519 SSLSocket ssl = getSSLSocket(); local
544 SSLSocket ssl = getSSLSocket(); local
577 SSLSocket ssl = getSSLSocket(); local
596 SSLSocket ssl = getSSLSocket(); local
621 SSLSocket ssl = getSSLSocket(); local
665 SSLSocket ssl = getSSLSocket(); local
697 SSLSocket ssl = getSSLSocket(); local
888 SSLSocket ssl = null; local
894 SSLSocket ssl = null; local
900 SSLSocket ssl = null; local
906 SSLSocket ssl = null; local
912 SSLSocket ssl = null; local
    [all...]
SSLContextSpiTest.java 16 package tests.api.javax.net.ssl;
23 import javax.net.ssl.KeyManagerFactory;
24 import javax.net.ssl.SSLContextSpi;
25 import javax.net.ssl.SSLEngine;
26 import javax.net.ssl.SSLServerSocketFactory;
27 import javax.net.ssl.SSLSessionContext;
28 import javax.net.ssl.SSLSocketFactory;
29 import javax.net.ssl.KeyManager;
30 import javax.net.ssl.TrustManager;
31 import javax.net.ssl.TrustManagerFactory
56 SSLContextSpiImpl ssl = new SSLContextSpiImpl(); local
74 SSLContextSpiImpl ssl = new SSLContextSpiImpl(); local
99 SSLContextSpiImpl ssl = new SSLContextSpiImpl(); local
155 SSLContextSpiImpl ssl = new SSLContextSpiImpl(); local
212 SSLContextSpiImpl ssl = new SSLContextSpiImpl(); local
289 SSLContextSpiImpl ssl = new SSLContextSpiImpl(); local
    [all...]
  /libcore/support/src/test/java/libcore/javax/net/ssl/
TestSSLSessions.java 17 package libcore.javax.net.ssl;
19 import javax.net.ssl.SSLSession;
20 import javax.net.ssl.SSLSocket;
21 import javax.net.ssl.SSLSocketFactory;
64 SSLSocket ssl = (SSLSocket) sf.createSocket(); local
65 SSLSession invalid = ssl.getSession();
  /external/openssl/
Android.mk 5 ssl \
  /libcore/luni/src/main/native/
NativeCrypto.cpp 34 #include <openssl/ssl.h>
111 void operator()(SSL* p) const {
115 typedef UniquePtr<SSL, SSL_Delete> Unique_SSL;
160 * Frees the SSL error state.
203 * Throws a javax.net.ssl.SSLException with the given string as a message.
207 jniThrowException(env, "javax/net/ssl/SSLException", message);
211 * Throws a javax.net.ssl.SSLProcotolException with the given string as a message.
215 jniThrowException(env, "javax/net/ssl/SSLProtocolException", message);
220 * SSL errors. This will also log the errors.
223 * @param ssl the possibly NULL SS
364 SSL* ssl = reinterpret_cast<SSL*>(static_cast<uintptr_t>(ssl_address)); local
1556 SSL* ssl = reinterpret_cast<SSL*>(X509_STORE_CTX_get_ex_data(x509_store_ctx, local
1891 SSL* ssl = to_SSL(env, ssl_address, true); local
1940 SSL* ssl = to_SSL(env, ssl_address, true); local
2025 SSL* ssl = to_SSL(env, ssl_address, true); local
2043 SSL* ssl = to_SSL(env, ssl_address, true); local
2109 SSL* ssl = to_SSL(env, ssl_address, true); local
2124 SSL* ssl = to_SSL(env, ssl_address, true); local
2139 SSL* ssl = to_SSL(env, ssl_address, true); local
2154 SSL* ssl = to_SSL(env, ssl_address, true); local
2169 SSL* ssl = to_SSL(env, ssl_address, true); local
2184 SSL* ssl = to_SSL(env, ssl_address, true); local
2200 SSL* ssl = to_SSL(env, ssl_address, true); local
2265 SSL* ssl = to_SSL(env, ssl_address, true); local
2279 SSL* ssl = to_SSL(env, ssl_address, true); local
2306 SSL* ssl = to_SSL(env, ssl_address, true); local
2318 SSL* ssl = to_SSL(env, ssl_address, true); local
2342 SSL* ssl = to_SSL(env, ssl_address, true); local
2358 SSL* ssl = to_SSL(env, ssl_address, true); local
2532 SSL* ssl = to_SSL(env, ssl_address, true); local
2558 SSL* ssl = to_SSL(env, ssl_address, true); local
2597 SSL* ssl = to_SSL(env, ssl_address, true); local
2762 SSL* ssl = to_SSL(env, ssl_address, true); local
2821 SSL* ssl = to_SSL(env, ssl_address, true); local
3014 SSL* ssl = to_SSL(env, ssl_address, true); local
3057 SSL* ssl = to_SSL(env, ssl_address, true); local
3105 SSL* ssl = to_SSL(env, ssl_address, false); local
3130 SSL* ssl = to_SSL(env, ssl_address, false); local
3204 SSL* ssl = to_SSL(env, ssl_address, true); local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/net/
SSLTest.java 32 Socket ssl = SSLCertificateSocketFactory.getDefault().createSocket("www.fortify.net",443); local
33 assertNotNull(ssl);
35 OutputStream out = ssl.getOutputStream();
38 InputStream in = ssl.getInputStream();
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
SSLClientSessionCache.java 19 import javax.net.ssl.SSLSession;
22 * A persistent {@link javax.net.ssl.SSLSession} cache used by
23 * {@link javax.net.ssl.SSLSessionContext} to share client-side SSL sessions
37 * @param host from {@link javax.net.ssl.SSLSession#getPeerHost()}
38 * @param port from {@link javax.net.ssl.SSLSession#getPeerPort()}
SSLServerSessionCache.java 19 import javax.net.ssl.SSLSession;
22 * A persistent {@link javax.net.ssl.SSLSession} cache used by
23 * {@link javax.net.ssl.SSLSessionContext} to share server-side SSL sessions
38 * @param id from {@link javax.net.ssl.SSLSession#getId()}

Completed in 548 milliseconds

1 2 3 4 5 6 7 8 91011>>