HomeSort by relevance Sort by last modified time
    Searched refs:ssl (Results 226 - 250 of 466) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/openssl/ssl/
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>
506 RSA *(*rsa_tmp_cb)(SSL *ssl,int is_export,int keysize);
510 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...]
  /libcore/luni/src/main/java/javax/net/ssl/
DefaultSSLSocketFactory.java 18 package javax.net.ssl;
28 * Default inoperative implementation of javax.net.ssl.SSLSocketFactory
SSLSocketFactory.java 18 package javax.net.ssl;
32 // The default SSL socket factory
39 * defined by the security property {@code 'ssl.SocketFactory.provider'}.
41 * @return the default ssl socket factory instance.
48 defaultName = Security.getProperty("ssl.SocketFactory.provider");
96 * enabled for an SSL connection.
116 * @return the creates ssl socket.
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
OpenSSLServerSocketFactoryImpl.java 24 public class OpenSSLServerSocketFactoryImpl extends javax.net.ssl.SSLServerSocketFactory {
SSLEngineAppData.java 21 import javax.net.ssl.SSLException;
SSLServerSocketFactoryImpl.java 24 import javax.net.ssl.SSLServerSocketFactory;
58 * @see javax.net.ssl.SSLServerSocketFactory#getDefaultCipherSuites()
69 * @see javax.net.ssl.SSLServerSocketFactory#getSupportedCipherSuites()
SSLSocketInputStream.java 22 import javax.net.ssl.SSLException;
27 * received by SSL protocol.
33 // in one ssl packet.
45 // the ssl socket owning the stream
OpenSSLSocketImpl.java 37 import javax.net.ssl.HandshakeCompletedEvent;
38 import javax.net.ssl.HandshakeCompletedListener;
39 import javax.net.ssl.SSLException;
40 import javax.net.ssl.SSLHandshakeException;
41 import javax.net.ssl.SSLPeerUnverifiedException;
42 import javax.net.ssl.SSLProtocolException;
43 import javax.net.ssl.SSLSession;
44 import javax.net.ssl.X509TrustManager;
64 extends javax.net.ssl.SSLSocket
156 * Create an SSL socket that wraps another socket. Invoked b
    [all...]
SSLSocketImpl.java 28 import javax.net.ssl.HandshakeCompletedEvent;
29 import javax.net.ssl.HandshakeCompletedListener;
30 import javax.net.ssl.SSLEngineResult;
31 import javax.net.ssl.SSLException;
32 import javax.net.ssl.SSLSession;
33 import javax.net.ssl.SSLSocket;
37 * @see javax.net.ssl.SSLSocket class documentation for more information.
55 // ssl socket as an input stream. Additionally this object is a
68 // ssl socket, whether it require/want client authentication or not,
69 // and controls whether new SSL sessions may be established by thi
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/xnet/provider/jsse/
FileClientSessionCacheTest.java 22 import libcore.javax.net.ssl.FakeSSLSession;
  /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;
  /libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
SSLSocketFactoryImpl.java 3 import javax.net.ssl.SSLSocketFactory;
  /external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
SSLEngineTest.java 18 package org.apache.harmony.xnet.tests.javax.net.ssl;
23 import javax.net.ssl.SSLEngine;
24 import javax.net.ssl.SSLException;
25 import javax.net.ssl.SSLParameters;
26 import javax.net.ssl.SSLEngineResult.HandshakeStatus;
27 import javax.net.ssl.SSLSession;
28 import javax.net.ssl.SSLEngineResult;
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";
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/chromium/third_party/libjingle/source/talk/base/
opensslstreamadapter.cc 40 #include <openssl/ssl.h>
448 SSL_set_bio(ssl_, bio, bio); // the SSL object owns the bio now.
536 // Add the root cert to the SSL context
577 // Get our SSL structure from the store
578 SSL* ssl = reinterpret_cast<SSL*>(X509_STORE_CTX_get_ex_data( local
583 reinterpret_cast<OpenSSLStreamAdapter*>(SSL_get_app_data(ssl));
620 bool OpenSSLStreamAdapter::SSLPostConnectionCheck(SSL* ssl,
    [all...]
openssladapter.cc 12 #include <openssl/ssl.h>
308 // the SSL object owns the bio now
620 bool OpenSSLAdapter::VerifyServerName(SSL* ssl, const char* host,
628 X509* certificate = SSL_get_peer_certificate(ssl);
644 SSL_CIPHER_description(SSL_get_current_cipher(ssl), NULL, 128);
732 bool OpenSSLAdapter::SSLPostConnectionCheck(SSL* ssl, const char* host) {
733 bool ok = VerifyServerName(ssl, host, ignore_bad_cert());
736 ok = (SSL_get_verify_result(ssl) == X509_V_OK |
799 SSL* ssl = reinterpret_cast<SSL*>( local
    [all...]
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
SSLSocketFunctionalTest.java 24 import javax.net.ssl.HandshakeCompletedEvent;
25 import javax.net.ssl.HandshakeCompletedListener;
26 import javax.net.ssl.SSLContext;
27 import javax.net.ssl.SSLServerSocket;
28 import javax.net.ssl.SSLSocket;
177 * Performs SSL connection between the sockets
182 final String server_message = "Hello from SSL Server Socket!";
183 final String client_message = "Hello from SSL Socket!";
  /external/chromium/chrome/browser/ui/views/
page_info_bubble_view.cc 90 const NavigationEntry::SSLStatus& ssl,
92 : ALLOW_THIS_IN_INITIALIZER_LIST(model_(profile, url, ssl,
95 cert_id_(ssl.cert_id()),
354 const NavigationEntry::SSLStatus& ssl,
373 new PageInfoBubbleView(parent, profile, url, ssl, show_history);
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpsURLConnectionImpl.java 35 import javax.net.ssl.HostnameVerifier;
36 import javax.net.ssl.HttpsURLConnection;
37 import javax.net.ssl.SSLPeerUnverifiedException;
38 import javax.net.ssl.SSLSocket;
39 import javax.net.ssl.SSLSocketFactory;
  /frameworks/base/tests/CoreTests/android/core/
SSLSocketTest.java 45 import javax.net.ssl.KeyManager;
46 import javax.net.ssl.KeyManagerFactory;
47 import javax.net.ssl.SSLContext;
48 import javax.net.ssl.SSLServerSocket;
49 import javax.net.ssl.SSLSession;
50 import javax.net.ssl.SSLSocket;
51 import javax.net.ssl.SSLSocketFactory;
52 import javax.net.ssl.TrustManager;
53 import javax.net.ssl.X509TrustManager;
56 * SSL integration tests that hit real servers
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_ttls.c 30 struct eap_ssl_data ssl; member in struct:eap_ttls_data
115 if (eap_peer_tls_ssl_init(sm, &data->ssl, config, EAP_TYPE_TTLS)) {
116 wpa_printf(MSG_INFO, "EAP-TTLS: Failed to initialize SSL.");
143 eap_peer_tls_ssl_deinit(sm, &data->ssl);
217 data->key_data = eap_peer_tls_derive_key(sm, &data->ssl,
229 data->session_id = eap_peer_tls_derive_session_id(sm, &data->ssl,
246 return eap_peer_tls_derive_key(sm, &data->ssl, "ttls challenge", len);
990 if (eap_peer_tls_encrypt(sm, &data->ssl, EAP_TYPE_TTLS,
    [all...]
  /external/openssl/apps/
s_cb.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
122 #include <openssl/ssl.h>
203 SSL *ssl;
225 ssl=SSL_new(ctx);
226 x509=SSL_get_certificate(ssl);
232 SSL_get_privatekey(ssl));
    [all...]
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
KeyManagerFactory1Test.java 18 package tests.api.javax.net.ssl;
31 import javax.net.ssl.KeyStoreBuilderParameters;
32 import javax.net.ssl.ManagerFactoryParameters;
33 import javax.net.ssl.KeyManager;
34 import javax.net.ssl.KeyManagerFactory;
35 import javax.net.ssl.KeyManagerFactorySpi;
65 .getProperty("ssl.KeyManagerFactory.algorithm");
98 * avax.net.ssl.KeyManagerFactory#getAlgorithm()
134 Security.setProperty("ssl.KeyManagerFactory.algorithm", defA);
140 Security.setProperty("ssl.KeyManagerFactory.algorithm", def)
    [all...]

Completed in 282 milliseconds

1 2 3 4 5 6 7 8 91011>>