HomeSort by relevance Sort by last modified time
    Searched refs:ssl (Results 101 - 125 of 770) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/boringssl/src/ssl/
ssl_session.cc 4 * This package is an SSL implementation written
6 * The implementation was written so as to conform with Netscapes SSL.
11 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
136 #include <openssl/ssl.h>
166 OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE);
313 OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE);
317 void ssl_session_rebase_time(SSL *ssl, SSL_SESSION *session) {
319 ssl_get_current_time(ssl, &now)
526 SSL *const ssl = hs->ssl; local
746 const SSL *const ssl = hs->ssl; local
    [all...]
ssl_cert.cc 4 * This package is an SSL implementation written
6 * The implementation was written so as to conform with Netscapes SSL.
11 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
115 #include <openssl/ssl.h>
137 OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE);
154 OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE);
235 static void ssl_cert_set_cert_cb(CERT *c, int (*cb)(SSL *ssl, void *arg),
261 OPENSSL_PUT_ERROR(SSL, SSL_R_DECODE_ERROR)
810 SSL *const ssl = hs->ssl; local
850 SSL *const ssl = hs->ssl; local
    [all...]
  /prebuilts/tools/common/m2/repository/io/netty/netty-handler/4.1.3.Final/
netty-handler-4.1.3.Final.jar 
  /external/conscrypt/common/src/main/java/org/conscrypt/
ActiveSession.java 28 import javax.net.ssl.SSLPeerUnverifiedException;
29 import javax.net.ssl.SSLSession;
30 import javax.net.ssl.SSLSessionBindingEvent;
31 import javax.net.ssl.SSLSessionBindingListener;
32 import javax.net.ssl.SSLSessionContext;
36 * {@code SSL}.
39 private final SslWrapper ssl; field in class:ActiveSession
57 ActiveSession(SslWrapper ssl, AbstractSessionContext sessionContext) {
58 this.ssl = checkNotNull(ssl, "ssl")
    [all...]
  /prebuilts/tools/common/m2/repository/io/netty/netty-handler/4.1.0.CR3/
netty-handler-4.1.0.CR3.jar 
  /external/google-tv-pairing-protocol/java/src/com/google/polo/ssl/
SSLServerSocketFactoryWrapper.java 17 package com.google.polo.ssl;
25 import javax.net.ssl.KeyManager;
26 import javax.net.ssl.SSLContext;
27 import javax.net.ssl.SSLServerSocketFactory;
28 import javax.net.ssl.TrustManager;
  /cts/tests/tests/net/src/android/net/http/cts/
X509TrustManagerExtensionsTest.java 25 import javax.net.ssl.TrustManager;
26 import javax.net.ssl.TrustManagerFactory;
27 import javax.net.ssl.X509TrustManager;
  /external/conscrypt/platform/src/main/java/org/conscrypt/
TrustManagerFactoryImpl.java 43 import javax.net.ssl.ManagerFactoryParameters;
44 import javax.net.ssl.TrustManager;
45 import javax.net.ssl.TrustManagerFactorySpi;
51 * @see javax.net.ssl.TrustManagerFactorySpi
60 * @see javax.net.ssl.TrustManagerFactorySpi#engineInit(KeyStore)
81 * @see javax.net.ssl#engineInit(ManagerFactoryParameters)
91 * @see javax.net.ssl#engineGetTrustManagers()
  /libcore/luni/src/test/java/libcore/javax/net/ssl/
SNIHostNameTest.java 17 package libcore.javax.net.ssl;
20 import javax.net.ssl.SNIHostName;
21 import javax.net.ssl.StandardConstants;
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
MyTrustManagerFactorySpi.java 24 import javax.net.ssl.ManagerFactoryParameters;
25 import javax.net.ssl.TrustManager;
26 import javax.net.ssl.TrustManagerFactorySpi;
  /libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
MyTrustManagerFactorySpi.java 24 import javax.net.ssl.ManagerFactoryParameters;
25 import javax.net.ssl.TrustManager;
26 import javax.net.ssl.TrustManagerFactorySpi;
  /external/libevent/include/event2/
bufferevent_ssl.h 42 /* This is what openssl's SSL objects are underneath. */
46 The state of an SSL object to be used when creating a new
47 SSL bufferevent.
57 Create a new SSL bufferevent to send its data over another bufferevent.
61 @param underlying A socket to use for this SSL
62 @param ssl A SSL* object from openssl.
63 @param state The current state of the SSL connection
70 struct ssl_st *ssl,
75 Create a new SSL bufferevent to send its data over an SSL * on a socket
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
SSLHandshakeExceptionTest.java 16 package org.apache.harmony.tests.javax.net.ssl;
18 import javax.net.ssl.SSLHandshakeException;
SSLKeyExceptionTest.java 16 package org.apache.harmony.tests.javax.net.ssl;
18 import javax.net.ssl.SSLKeyException;
SSLPeerUnverifiedExceptionTest.java 16 package org.apache.harmony.tests.javax.net.ssl;
18 import javax.net.ssl.SSLPeerUnverifiedException;
SSLProtocolExceptionTest.java 16 package org.apache.harmony.tests.javax.net.ssl;
18 import javax.net.ssl.SSLProtocolException;
  /libcore/ojluni/src/main/java/javax/net/ssl/
X509ExtendedTrustManager.java 26 package javax.net.ssl;
29 import javax.net.ssl.X509TrustManager;
36 * SSL/TLS connection sensitive trust management.
42 * certificate chain checks were done at the SSL/TLS layer, and the hostname
59 * authentication type and ssl parameters.
66 * {@link javax.net.ssl.SSLSocket}, and the endpoint identification
74 * {@link javax.net.ssl.SSLSocket}, and the algorithm constraints of the
84 * the ssl parameters
102 * authentication type and ssl parameters.
114 * {@link javax.net.ssl.SSLSocket}, and the endpoint identificatio
    [all...]
  /external/curl/lib/vtls/
polarssl.c 25 * Source file for all PolarSSL-specific code for the TLS/SSL layer. No code
35 #include <polarssl/ssl.h>
149 struct ssl_connect_data* connssl = &conn->ssl[sockindex];
271 if(ssl_init(&connssl->ssl)) {
279 ssl_set_min_version(&connssl->ssl, SSL_MAJOR_VERSION_3,
283 ssl_set_min_version(&connssl->ssl, SSL_MAJOR_VERSION_3,
285 ssl_set_max_version(&connssl->ssl, SSL_MAJOR_VERSION_3,
287 infof(data, "PolarSSL: Forced min. SSL Version to be SSLv3\n");
290 ssl_set_min_version(&connssl->ssl, SSL_MAJOR_VERSION_3,
292 ssl_set_max_version(&connssl->ssl, SSL_MAJOR_VERSION_3
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_server_tls.c 21 struct eap_ssl_data ssl; member in struct:eap_tls_data
52 tls_connection_remove_session(data->ssl.conn);
67 tls_connection_set_success_data(data->ssl.conn, buf);
80 if (eap_server_tls_ssl_init(sm, &data->ssl, 1, EAP_TYPE_TLS)) {
81 wpa_printf(MSG_INFO, "EAP-TLS: Failed to initialize SSL.");
102 if (eap_server_tls_ssl_init(sm, &data->ssl, 0, EAP_UNAUTH_TLS_TYPE)) {
103 wpa_printf(MSG_INFO, "EAP-TLS: Failed to initialize SSL.");
124 if (eap_server_tls_ssl_init(sm, &data->ssl, 0,
126 wpa_printf(MSG_INFO, "EAP-TLS: Failed to initialize SSL.");
142 eap_server_tls_ssl_deinit(sm, &data->ssl);
    [all...]
  /external/conscrypt/common/src/jni/main/cpp/
NativeCrypto.cpp 43 #include <openssl/ssl.h>
50 * Helper function that grabs the casts an ssl pointer and then checks for nullness.
59 * @param throwIfNull whether to throw if the SSL pointer is nullptr
71 static SSL* to_SSL(JNIEnv* env, jlong ssl_address, bool throwIfNull) {
72 SSL* ssl = reinterpret_cast<SSL*>(static_cast<uintptr_t>(ssl_address)); local
73 if ((ssl == nullptr) && throwIfNull) {
74 JNI_TRACE("ssl == null");
75 Errors::jniThrowNullPointerException(env, "ssl == null")
5572 SSL* ssl = reinterpret_cast<SSL*>(X509_STORE_CTX_get_ex_data(x509_store_ctx, local
6205 SSL* ssl = to_SSL(env, ssl_address, true); local
6233 SSL* ssl = to_SSL(env, ssl_address, true); local
6260 SSL* ssl = to_SSL(env, ssl_address, true); local
6318 SSL* ssl = to_SSL(env, ssl_address, true); local
6336 SSL* ssl = to_SSL(env, ssl_address, true); local
6405 SSL* ssl = to_SSL(env, ssl_address, true); local
6420 SSL* ssl = to_SSL(env, ssl_address, true); local
6435 SSL* ssl = to_SSL(env, ssl_address, true); local
6451 SSL* ssl = to_SSL(env, ssl_address, true); local
6465 SSL* ssl = to_SSL(env, ssl_address, true); local
6493 SSL* ssl = to_SSL(env, ssl_address, true); local
6519 SSL* ssl = to_SSL(env, ssl_address, true); local
6533 SSL* ssl = to_SSL(env, ssl_address, true); local
6566 SSL* ssl = to_SSL(env, ssl_address, true); local
6590 SSL* ssl = to_SSL(env, ssl_address, true); local
6619 SSL* ssl = to_SSL(env, ssl_address, true); local
6632 SSL* ssl = to_SSL(env, ssl_address, true); local
6644 SSL* ssl = to_SSL(env, ssl_address, true); local
6667 SSL* ssl = to_SSL(env, ssl_address, true); local
6765 SSL* ssl = to_SSL(env, sslRef, true); local
6774 SSL* ssl = to_SSL(env, sslRef, true); local
6788 SSL* ssl = to_SSL(env, ssl_address, true); local
6802 SSL* ssl = to_SSL(env, ssl_address, true); local
6836 SSL* ssl = to_SSL(env, ssl_address, true); local
6851 SSL* ssl = to_SSL(env, ssl_address, true); local
6863 SSL* ssl = to_SSL(env, ssl_address, true); local
6875 SSL* ssl = to_SSL(env, ssl_address, true); local
6900 SSL* ssl = to_SSL(env, ssl_address, true); local
6962 SSL* ssl = to_SSL(env, ssl_address, true); local
6986 SSL* ssl = to_SSL(env, ssl_address, true); local
7151 SSL* ssl = to_SSL(env, ssl_address, true); local
7163 SSL* ssl = to_SSL(env, ssl_address, true); local
7178 SSL* ssl = to_SSL(env, ssl_address, true); local
7229 SSL* ssl = to_SSL(env, ssl_address, true); local
7378 SSL* ssl = to_SSL(env, ssl_address, true); local
7654 SSL* ssl = to_SSL(env, ssl_address, true); local
7746 SSL* ssl = to_SSL(env, ssl_address, false); local
7771 SSL* ssl = to_SSL(env, ssl_address, false); local
7851 SSL* ssl = to_SSL(env, ssl_address, false); local
7924 const SSL* ssl = to_SSL(env, ssl_address, true); local
7940 SSL* ssl = to_SSL(env, ssl_address, true); local
7994 SSL* ssl = to_SSL(env, ssl_address, true); local
8017 SSL* ssl = to_SSL(env, ssl_address, true); local
8039 SSL* ssl = to_SSL(env, ssl_address, true); local
8075 SSL* ssl = to_SSL(env, ssl_address, true); local
8508 SSL* ssl = to_SSL(env, ssl_address, true); local
8526 SSL* ssl = to_SSL(env, ssl_address, true); local
8542 SSL* ssl = to_SSL(env, ssl_address, true); local
8553 SSL* ssl = to_SSL(env, ssl_address, true); local
8575 SSL* ssl = to_SSL(env, ssl_address, true); local
8621 SSL* ssl = to_SSL(env, ssl_address, true); local
8706 SSL* ssl = to_SSL(env, ssl_address, false); local
8858 SSL* ssl = to_SSL(env, sslRef, true); local
8872 SSL* ssl = to_SSL(env, sslRef, true); local
8896 SSL* ssl = to_SSL(env, sslRef, true); local
8951 SSL* ssl = to_SSL(env, sslRef, true); local
9016 SSL* ssl = to_SSL(env, sslRef, true); local
9067 SSL* ssl = to_SSL(env, sslRef, true); local
9129 SSL* ssl = to_SSL(env, sslRef, true); local
9171 SSL* ssl = to_SSL(env, sslRef, true); local
9295 SSL* ssl = to_SSL(env, ssl_address, true); local
9309 SSL* ssl = to_SSL(env, ssl_address, true); local
9324 SSL* ssl = to_SSL(env, ssl_address, true); local
9335 SSL* ssl = to_SSL(env, ssl_address, true); local
    [all...]
  /external/conscrypt/android-stub/src/main/java/com/android/org/conscrypt/
NativeCrypto.java 21 import javax.net.ssl.SSLException;
37 * Called on an SSL client when the server requests (or
51 * Called when SSL handshake is completed. Note that this can
  /external/conscrypt/android-stub/src/main/java/org/apache/harmony/xnet/provider/jsse/
NativeCrypto.java 21 import javax.net.ssl.SSLException;
36 * Called on an SSL client when the server requests (or
50 * Called when SSL handshake is completed. Note that this can
  /external/conscrypt/openjdk-integ-tests/src/test/java/libcore/javax/net/ssl/
X509KeyManagerTest.java 17 package libcore.javax.net.ssl;
22 import javax.net.ssl.KeyManager;
23 import javax.net.ssl.KeyManagerFactory;
24 import javax.net.ssl.X509KeyManager;
  /external/curl/docs/cmdline-opts/
ftp-ssl-ccc-mode.d 1 Long: ftp-ssl-ccc-mode
6 See-also: ftp-ssl-ccc
  /external/google-tv-pairing-protocol/cpp/tests/polo/
polotests.cc 17 #include <openssl/ssl.h>

Completed in 1660 milliseconds

1 2 3 45 6 7 8 91011>>