/external/boringssl/src/ssl/ |
d1_clnt.c | 61 * This package is an SSL implementation written 63 * The implementation was written so as to conform with Netscapes SSL. 68 * lhash, DES, etc., code; not just the SSL code. The SSL documentation 115 #include <openssl/ssl.h> 134 static int dtls1_get_hello_verify(SSL *ssl); 136 int dtls1_connect(SSL *ssl) { 138 void (*cb)(const SSL *ssl, int type, int value) = NULL [all...] |
d1_srvr.c | 61 * This package is an SSL implementation written 63 * The implementation was written so as to conform with Netscapes SSL. 68 * lhash, DES, etc., code; not just the SSL code. The SSL documentation 115 #include <openssl/ssl.h> 133 int dtls1_accept(SSL *ssl) { 135 void (*cb)(const SSL *ssl, int type, int value) = NULL; 140 assert(ssl->handshake_func == dtls1_accept) [all...] |
d1_lib.c | 57 #include <openssl/ssl.h> 85 static void get_current_time(const SSL *ssl, struct timeval *out_clock); 87 int dtls1_new(SSL *ssl) { 90 if (!ssl3_new(ssl)) { 95 ssl3_free(ssl); 107 ssl3_free(ssl); 111 ssl->d1 = d1; 114 * state of |ssl->enc_method| and what the API reports as the version prior t [all...] |
s3_both.c | 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 113 #include <openssl/ssl.h> 133 /* ssl3_do_write sends |ssl->init_buf| in records of type 'type' 136 int ssl3_do_write(SSL *ssl, int type) { 139 n = ssl3_write_bytes(ssl, type, &ssl->init_buf->data[ssl->init_off] [all...] |
s3_clnt.c | 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 150 #include <openssl/ssl.h> 175 int ssl3_connect(SSL *ssl) { 177 void (*cb)(const SSL *ssl, int type, int value) = NULL; 181 assert(ssl->handshake_func == ssl3_connect) [all...] |
s3_pkt.c | 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 109 #include <openssl/ssl.h> 125 static int do_ssl3_write(SSL *ssl, int type, const uint8_t *buf, unsigned len); 132 * |ssl->s3->rrec| and returns one. Otherwise it returns <= 0 on error or if 134 static int ssl3_get_record(SSL *ssl) { [all...] |
ssl_lib.c | 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 141 #include <openssl/ssl.h> 163 OPENSSL_DECLARE_ERROR_REASON(SSL, UNKNOWN_PROTOCOL) 215 OPENSSL_PUT_ERROR(SSL, SSL_R_NULL_SSL_METHOD_PASSED); 220 OPENSSL_PUT_ERROR(SSL, SSL_R_X509_VERIFICATION_SETUP_PROBLEMS); 263 OPENSSL_PUT_ERROR(SSL, SSL_R_LIBRARY_HAS_NO_CIPHERS); 298 OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE) 356 SSL *ssl = (SSL *)OPENSSL_malloc(sizeof(SSL)); local [all...] |
s3_srvr.c | 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 149 #include <openssl/ssl.h> 177 int ssl3_accept(SSL *ssl) { 180 void (*cb)(const SSL *ssl, int type, int value) = NULL; 184 assert(ssl->handshake_func == ssl3_accept) [all...] |
ssl_buffer.c | 15 #include <openssl/ssl.h> 40 OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR); 47 OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE); 79 static int setup_read_buffer(SSL *ssl) { 80 SSL3_BUFFER *buf = &ssl->s3->read_buffer; 86 size_t header_len = ssl_record_prefix_len(ssl); 88 if (SSL_IS_DTLS(ssl)) { 97 uint8_t *ssl_read_buffer(SSL *ssl) { [all...] |
d1_pkt.c | 59 * This package is an SSL implementation written 61 * The implementation was written so as to conform with Netscapes SSL. 66 * lhash, DES, etc., code; not just the SSL code. The SSL documentation 112 #include <openssl/ssl.h> 127 static int do_dtls1_write(SSL *ssl, int type, const uint8_t *buf, 131 * |ssl->s3->rrec| and returns one. Otherwise it returns <= 0 on error or if 133 static int dtls1_get_record(SSL *ssl) { [all...] |
s3_lib.c | 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 149 #include <openssl/ssl.h> 184 int ssl3_set_handshake_header(SSL *ssl, int htype, unsigned long len) { 185 uint8_t *p = (uint8_t *)ssl->init_buf->data; 188 ssl->init_num = (int)len + SSL3_HM_HEADER_LENGTH; 189 ssl->init_off = 0 [all...] |
tls_record.c | 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 109 #include <openssl/ssl.h> 125 /* ssl_needs_record_splitting returns one if |ssl|'s current outgoing cipher 127 static int ssl_needs_record_splitting(const SSL *ssl) { 128 return !SSL_USE_EXPLICIT_IV(ssl) && ssl->aead_write_ctx != NULL & [all...] |
internal.h | 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 149 #include <openssl/ssl.h> 264 * an SSL connection. */ 350 * of a record for |ssl|. 354 size_t ssl_record_prefix_len(const SSL *ssl); 384 SSL *ssl, uint8_t *out_type, uint8_t *out, size_t *out_len 1021 STACK_OF(SSL_CIPHER) *ssl_get_ciphers_by_id(SSL *ssl); variable [all...] |
/external/conscrypt/src/stub/java/javax/net/ssl/ |
SNIServerName.java | 17 package javax.net.ssl;
|
SNIHostName.java | 17 package javax.net.ssl;
|
ExtendedSSLSession.java | 17 package javax.net.ssl; 20 import javax.net.ssl.SNIServerName; 21 import javax.net.ssl.SSLSession;
|
/libcore/ojluni/src/main/java/javax/net/ssl/ |
KeyManager.java | 26 package javax.net.ssl;
|
ManagerFactoryParameters.java | 26 package javax.net.ssl;
|
TrustManager.java | 26 package javax.net.ssl;
|
StandardConstants.java | 26 package javax.net.ssl; 38 "No javax.net.ssl.StandardConstants instances for you!"); 45 * The SNI extension is a feature that extends the SSL/TLS protocols to
|
HostnameVerifier.java | 26 package javax.net.ssl;
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/ |
SSLSocketTest.java | 16 package org.apache.harmony.tests.javax.net.ssl; 27 import javax.net.ssl.HandshakeCompletedEvent; 28 import javax.net.ssl.HandshakeCompletedListener; 29 import javax.net.ssl.KeyManager; 30 import javax.net.ssl.KeyManagerFactory; 31 import javax.net.ssl.SSLContext; 32 import javax.net.ssl.SSLServerSocket; 33 import javax.net.ssl.SSLSocket; 34 import javax.net.ssl.SSLSocketFactory; 35 import javax.net.ssl.TrustManager 53 SSLSocket ssl = getSSLSocket(); local 65 SSLSocket ssl = getSSLSocket(InetAddress.getLocalHost(), sport); local 92 SSLSocket ssl = getSSLSocket(InetAddress.getLocalHost(), sport, local 140 SSLSocket ssl = getSSLSocket(InetAddress.getLocalHost().getHostName(), sport); local 174 SSLSocket ssl = getSSLSocket(InetAddress.getLocalHost().getHostName(), sport, local 227 SSLSocket ssl = getSSLSocket(); local 242 SSLSocket ssl = getSSLSocket(); local 265 SSLSocket ssl = getSSLSocket(); local 279 SSLSocket ssl = getSSLSocket(); local 292 SSLSocket ssl = getSSLSocket(); local 304 SSLSocket ssl = getSSLSocket(); local 315 SSLSocket ssl = getSSLSocket(); local 338 SSLSocket ssl = getSSLSocket(); local 347 SSLSocket ssl = getSSLSocket(); local 358 SSLSocket ssl = getSSLSocket(); local 384 SSLSocket ssl = getSSLSocket(); local 408 SSLSocket ssl = getSSLSocket(); local [all...] |
/frameworks/base/core/java/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;
|
/external/jetty/src/java/org/eclipse/jetty/http/ssl/ |
SslContextFactory.java | 19 package org.eclipse.jetty.http.ssl; 23 * @deprecated Use org.eclipse.jetty.util.ssl.SslContextFactory 25 public class SslContextFactory extends org.eclipse.jetty.util.ssl.SslContextFactory
|
/libcore/luni/src/test/java/libcore/javax/net/ssl/ |
SSLServerSocketFactoryTest.java | 17 package libcore.javax.net.ssl; 19 import javax.net.ssl.SSLServerSocketFactory;
|