Searched refs:ssl (Results 1 - 25 of 421) sorted by relevance

1234567891011>>

/external/openssl/
H A DSsl-config-host.mk21 ssl/bio_ssl.c \
22 ssl/d1_both.c \
23 ssl/d1_enc.c \
24 ssl/d1_lib.c \
25 ssl/d1_pkt.c \
26 ssl/d1_srtp.c \
27 ssl/kssl.c \
28 ssl/s23_clnt.c \
29 ssl/s23_lib.c \
30 ssl/s23_met
[all...]
H A DSsl-config-target.mk21 ssl/bio_ssl.c \
22 ssl/d1_both.c \
23 ssl/d1_enc.c \
24 ssl/d1_lib.c \
25 ssl/d1_pkt.c \
26 ssl/d1_srtp.c \
27 ssl/kssl.c \
28 ssl/s23_clnt.c \
29 ssl/s23_lib.c \
30 ssl/s23_met
[all...]
/external/apache-http/src/org/apache/http/conn/ssl/
H A DX509HostnameVerifier.java2 * $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
69 void verify(String host, SSLSocket ssl) throws IOException; argument
H A DBrowserCompatHostnameVerifier.java2 * $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;
H A DStrictHostnameVerifier.java2 * $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;
H A DAllowAllHostnameVerifier.java2 * $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/
H A Dbio_ssl.c0 /* ssl/bio_ssl.c */
66 #include <openssl/ssl.h>
77 SSL *ssl; /* The ssl handle :-) */ member in struct:bio_ssl_st
88 BIO_TYPE_SSL,"ssl",
127 if (bs->ssl != NULL) SSL_shutdown(bs->ssl);
130 if (a->init && (bs->ssl != NULL))
131 SSL_free(bs->ssl);
144 SSL *ssl; local
236 SSL *ssl; local
306 SSL **sslp,*ssl; local
497 SSL *ssl; local
531 BIO *ret=NULL,*buf=NULL,*ssl=NULL; local
550 BIO *ret=NULL,*con=NULL,*ssl=NULL; local
568 SSL *ssl; local
[all...]
H A Dssl_err2.c0 /* ssl/ssl_err2.c */
61 #include <openssl/ssl.h>
/external/chromium_org/third_party/boringssl/src/ssl/test/
H A Dbssl_shim.cc29 #include <openssl/ssl.h>
43 static void SetConfigPtr(SSL *ssl, const TestConfig *config) { argument
44 SSL_set_ex_data(ssl, g_ex_data_index, (void *)config);
47 static const TestConfig *GetConfigPtr(SSL *ssl) { argument
48 return (const TestConfig *)SSL_get_ex_data(ssl, g_ex_data_index);
70 const TestConfig *config = GetConfigPtr(ctx->ssl);
112 static int next_protos_advertised_callback(SSL *ssl, argument
116 const TestConfig *config = GetConfigPtr(ssl);
127 static int next_proto_select_callback(SSL* ssl, argument
133 const TestConfig *config = GetConfigPtr(ssl);
142 alpn_select_callback(SSL* ssl, const uint8_t** out, uint8_t* outlen, const uint8_t* in, unsigned inlen, void* arg) argument
165 cookie_generate_callback(SSL *ssl, uint8_t *cookie, size_t *cookie_len) argument
171 cookie_verify_callback(SSL *ssl, const uint8_t *cookie, size_t cookie_len) argument
265 retry_async(SSL *ssl, int ret, BIO *bio) argument
291 SSL *ssl = SSL_new(ssl_ctx); local
[all...]
/external/conscrypt/src/main/java/org/conscrypt/
H A DSSLServerSessionCache.java19 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()}
H A DSSLClientSessionCache.java19 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()}
/external/google-tv-pairing-protocol/java/src/com/google/polo/ssl/
H A DDummySSLServerSocketFactory.java17 package com.google.polo.ssl;
22 import javax.net.ssl.KeyManager;
23 import javax.net.ssl.SSLServerSocketFactory;
24 import javax.net.ssl.TrustManager;
H A DDummySSLSocketFactory.java17 package com.google.polo.ssl;
22 import javax.net.ssl.KeyManager;
23 import javax.net.ssl.SSLSocketFactory;
24 import javax.net.ssl.TrustManager;
H A DDummyTrustManager.java17 package com.google.polo.ssl;
21 import javax.net.ssl.X509TrustManager;
/external/smack/src/org/jivesoftware/smack/
H A DBOSHConfiguration.java38 private boolean ssl; field in class:BOSHConfiguration
44 ssl = false;
51 ssl = false;
72 ssl = https;
94 ssl = https;
115 return ssl;
122 return new URI((ssl ? "https://" : "http://") + getHost() + ":" + getPort() + file);
/external/chromium_org/net/socket/
H A Dssl_session_cache_openssl_unittest.cc7 #include <openssl/ssl.h>
40 // Return the string associated with a given SSL handle |ssl|, or the
42 static std::string Get(const SSL* ssl) { argument
43 return GetInstance()->GetValue(ssl);
46 // Associate a string with a given SSL handle |ssl|.
47 static void Set(SSL* ssl, const std::string& value) { argument
48 GetInstance()->SetValue(ssl, value);
62 std::string GetValue(const SSL* ssl) { argument
64 reinterpret_cast<std::string*>(SSL_get_ex_data(ssl, ex_index_));
70 void SetValue(SSL* ssl, cons argument
126 SSL* ssl = SSL_new(ctx_.get()); local
137 ResetSessionID(SSL* ssl) argument
140 AddToCache(SSL* ssl) argument
[all...]
H A Dssl_session_cache_openssl.h53 typedef std::string GetSessionKeyFunction(const SSL* ssl);
92 // Lookup the unique cache key associated with |ssl| connection handle,
94 // it with the |ssl| connection through SSL_set_session(). Consider using
101 // Return true iff a cached session was associated with the |ssl| connection.
102 bool SetSSLSession(SSL* ssl);
107 // configuration's |key_func| function with the |ssl| as parameter.
113 // Return true iff a cached session was associated with the |ssl| connection.
114 bool SetSSLSessionWithKey(SSL* ssl, const std::string& cache_key);
119 // Indicates that the SSL session associated with |ssl| is "good" - that is,
125 void MarkSSLSessionAsGood(SSL* ssl);
[all...]
/external/chromium_org/chrome/browser/resources/security_warnings/
H A Dinterstitial_v2.js68 var ssl = loadTimeData.getBoolean('ssl');
70 if (ssl) {
71 $('body').classList.add('ssl');
79 if (!ssl)
89 sendCommand(ssl ? CMD_PROCEED : SB_CMD_PROCEED);
91 } else if (!ssl) {
95 if (ssl && overridable) {
100 if (ssl)
109 if (ssl
[all...]
/external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/serialization/
H A DHandshakeCompletedEventTest.java18 package org.apache.harmony.xnet.tests.javax.net.ssl.serialization;
22 import javax.net.ssl.HandshakeCompletedEvent;
23 import javax.net.ssl.SSLContext;
24 import javax.net.ssl.SSLSocket;
H A DSSLSessionBindingEventTest.java18 package org.apache.harmony.xnet.tests.javax.net.ssl.serialization;
22 import javax.net.ssl.SSLContext;
23 import javax.net.ssl.SSLSessionBindingEvent;
24 import javax.net.ssl.SSLSocket;
H A DSSLHandshakeExceptionTest.java22 package org.apache.harmony.xnet.tests.javax.net.ssl.serialization;
24 import javax.net.ssl.SSLHandshakeException;
H A DSSLKeyExceptionTest.java22 package org.apache.harmony.xnet.tests.javax.net.ssl.serialization;
24 import javax.net.ssl.SSLKeyException;
/external/chromium_org/third_party/webrtc/base/
H A Dopenssl.h14 #include <openssl/ssl.h>
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ecf.provider.filetransfer.ssl_1.0.0.v20100529-0735.jar ... ecf/internal/provider/filetransfer/ org/eclipse/ecf/internal/provider/filetransfer/ssl/ org/eclipse/ecf/internal/provider/filetransfer/ssl/ECFURLConnectionModifier.class
/external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
H A DCertPathTrustManagerParametersTest.java18 package org.apache.harmony.xnet.tests.javax.net.ssl;
21 import javax.net.ssl.CertPathTrustManagerParameters;

Completed in 726 milliseconds

1234567891011>>