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

1 2 3 4 5 6 7 8 91011>>

  /external/openssl/
Ssl-config-host.mk 16 LOCAL_ADDITIONAL_DEPENDENCIES += $(LOCAL_PATH)/Ssl-config-host.mk
21 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
    [all...]
Ssl-config-target.mk 16 LOCAL_ADDITIONAL_DEPENDENCIES += $(LOCAL_PATH)/Ssl-config-target.mk
21 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
    [all...]
  /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
69 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
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...]
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>
  /external/chromium_org/third_party/boringssl/src/ssl/test/
bssl_shim.cc 29 #include <openssl/ssl.h>
43 static void SetConfigPtr(SSL *ssl, const TestConfig *config) {
44 SSL_set_ex_data(ssl, g_ex_data_index, (void *)config);
47 static const TestConfig *GetConfigPtr(SSL *ssl) {
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,
291 SSL *ssl = SSL_new(ssl_ctx); local
    [all...]
  /external/conscrypt/src/main/java/org/conscrypt/
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()}
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()}
  /external/google-tv-pairing-protocol/java/src/com/google/polo/ssl/
DummySSLServerSocketFactory.java 17 package com.google.polo.ssl;
22 import javax.net.ssl.KeyManager;
23 import javax.net.ssl.SSLServerSocketFactory;
24 import javax.net.ssl.TrustManager;
DummySSLSocketFactory.java 17 package com.google.polo.ssl;
22 import javax.net.ssl.KeyManager;
23 import javax.net.ssl.SSLSocketFactory;
24 import javax.net.ssl.TrustManager;
DummyTrustManager.java 17 package com.google.polo.ssl;
21 import javax.net.ssl.X509TrustManager;
  /external/chromium_org/net/socket/
ssl_session_cache_openssl_unittest.cc 7 #include <openssl/ssl.h>
18 // session for an existing SSL object. This shall force a call to the
19 // 'generate_session_id' callback from the SSL's session context.
20 // |s| is the target SSL connection handle.
23 extern "C" int ssl_get_new_session(SSL* s, int session);
28 extern "C" void ssl_update_cache(SSL* s, int mode);
34 typedef crypto::ScopedOpenSSL<SSL, SSL_free>::Type ScopedSSL;
37 // Helper class used to associate arbitrary std::string keys with SSL objects.
40 // Return the string associated with a given SSL handle |ssl|, or th
126 SSL* ssl = SSL_new(ctx_.get()); local
    [all...]
ssl_session_cache_openssl.h 15 typedef struct ssl_st SSL;
28 // that can retrieve a unique cache key from an existing SSL handle.
30 // - When creating a new SSL connection, call SetSSLSession() with the newly
31 // created SSL handle, and a cache key for the current host/port. If a
48 // SSL connections being performed in parallel in multiple threads.
51 // Type of a function that takes a SSL handle and returns a unique cache
53 typedef std::string GetSessionKeyFunction(const SSL* ssl);
57 // from a given SSL connection handle.
74 // unique cache key from a SSL connection handle
    [all...]
  /external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/serialization/
HandshakeCompletedEventTest.java 18 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;
SSLSessionBindingEventTest.java 18 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;
SSLHandshakeExceptionTest.java 22 package org.apache.harmony.xnet.tests.javax.net.ssl.serialization;
24 import javax.net.ssl.SSLHandshakeException;
SSLKeyExceptionTest.java 22 package org.apache.harmony.xnet.tests.javax.net.ssl.serialization;
24 import javax.net.ssl.SSLKeyException;
SSLPeerUnverifiedExceptionTest.java 22 package org.apache.harmony.xnet.tests.javax.net.ssl.serialization;
24 import javax.net.ssl.SSLPeerUnverifiedException;
SSLProtocolExceptionTest.java 22 package org.apache.harmony.xnet.tests.javax.net.ssl.serialization;
24 import javax.net.ssl.SSLProtocolException;
  /external/chromium_org/third_party/webrtc/base/
openssl.h 14 #include <openssl/ssl.h>
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ecf.provider.filetransfer.ssl_1.0.0.v20100529-0735.jar 
  /external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
CertPathTrustManagerParametersTest.java 18 package org.apache.harmony.xnet.tests.javax.net.ssl;
21 import javax.net.ssl.CertPathTrustManagerParameters;

Completed in 709 milliseconds

1 2 3 4 5 6 7 8 91011>>