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

1 2 3 4 5 6 7 8 91011>>

  /external/boringssl/src/ssl/
d1_lib.cc 57 #include <openssl/ssl.h>
80 int dtls1_new(SSL *ssl) {
81 if (!ssl3_new(ssl)) {
86 ssl3_free(ssl);
91 ssl->d1 = d1;
98 ssl->version = DTLS1_2_VERSION;
102 void dtls1_free(SSL *ssl) {
103 ssl3_free(ssl);
    [all...]
s3_lib.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
149 #include <openssl/ssl.h>
165 int ssl3_new(SSL *ssl) {
172 s3->hs = ssl_handshake_new(ssl);
178 ssl->s3 = s3;
185 ssl->version = TLS1_2_VERSION
    [all...]
s3_pkt.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
109 #include <openssl/ssl.h>
125 static int do_ssl3_write(SSL *ssl, int type, const uint8_t *buf, unsigned len);
128 * |ssl->s3->rrec| and returns one. Otherwise it returns <= 0 on error or if
130 static int ssl3_get_record(SSL *ssl) {
    [all...]
dtls_method.cc 57 #include <openssl/ssl.h>
73 static void dtls1_expect_flight(SSL *ssl) { dtls1_start_timer(ssl); }
75 static void dtls1_received_flight(SSL *ssl) { dtls1_stop_timer(ssl); }
77 static int dtls1_set_read_state(SSL *ssl, SSL_AEAD_CTX *aead_ctx) {
79 if (dtls_has_incoming_messages(ssl)) {
    [all...]
s3_both.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
113 #include <openssl/ssl.h>
133 SSL_HANDSHAKE *ssl_handshake_new(SSL *ssl) {
136 OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE);
140 hs->ssl = ssl;
379 SSL *const ssl = hs->ssl; local
427 SSL *const ssl = hs->ssl; local
    [all...]
ssl_lib.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
141 #include <openssl/ssl.h>
167 OPENSSL_DECLARE_ERROR_REASON(SSL, UNKNOWN_PROTOCOL)
171 OPENSSL_DECLARE_ERROR_REASON(SSL, BLOCK_CIPHER_PAD_IS_WRONG)
172 OPENSSL_DECLARE_ERROR_REASON(SSL, NO_CIPHERS_SPECIFIED)
233 OPENSSL_PUT_ERROR(SSL, SSL_R_NULL_SSL_METHOD_PASSED);
304 OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR)
368 SSL *ssl = (SSL *)OPENSSL_malloc(sizeof(SSL)); local
1810 SSL *const ssl = hs->ssl; local
    [all...]
ssl_buffer.cc 15 #include <openssl/ssl.h>
42 OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR);
53 OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE);
86 uint8_t *ssl_read_buffer(SSL *ssl) {
87 return ssl->s3->read_buffer.buf + ssl->s3->read_buffer.offset;
90 size_t ssl_read_buffer_len(const SSL *ssl) {
91 return ssl->s3->read_buffer.len
    [all...]
tls13_client.cc 15 #include <openssl/ssl.h>
52 SSL *const ssl = hs->ssl; local
53 if (ssl->s3->tmp.message_type != SSL3_MT_HELLO_RETRY_REQUEST) {
60 CBS_init(&cbs, ssl->init_msg, ssl->init_num);
66 OPENSSL_PUT_ERROR(SSL, SSL_R_DECODE_ERROR);
67 ssl3_send_alert(ssl, SSL3_AL_FATAL, SSL_AD_DECODE_ERROR);
82 ssl3_send_alert(ssl, SSL3_AL_FATAL, alert)
153 SSL *const ssl = hs->ssl; local
164 SSL *const ssl = hs->ssl; local
344 SSL *const ssl = hs->ssl; local
366 SSL *const ssl = hs->ssl; local
425 SSL *const ssl = hs->ssl; local
483 SSL *const ssl = hs->ssl; local
496 SSL *const ssl = hs->ssl; local
508 SSL *const ssl = hs->ssl; local
524 SSL *const ssl = hs->ssl; local
548 SSL *const ssl = hs->ssl; local
580 SSL *const ssl = hs->ssl; local
605 SSL *const ssl = hs->ssl; local
    [all...]
d1_pkt.cc 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>
129 int dtls1_get_record(SSL *ssl) {
131 switch (ssl->s3->recv_shutdown) {
135 OPENSSL_PUT_ERROR(SSL, SSL_R_PROTOCOL_IS_SHUTDOWN);
142 if (ssl_read_buffer_len(ssl) == 0)
    [all...]
d1_both.cc 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
114 #include <openssl/ssl.h>
157 OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE);
169 OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE);
182 OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE);
190 OPENSSL_PUT_ERROR(SSL, ERR_R_OVERFLOW);
196 OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE)
    [all...]
bio_ssl.cc 10 #include <openssl/ssl.h>
15 static SSL *get_ssl(BIO *bio) {
16 return reinterpret_cast<SSL *>(bio->ptr);
20 SSL *ssl = get_ssl(bio); local
21 if (ssl == NULL) {
27 const int ret = SSL_read(ssl, out, outl);
29 switch (SSL_get_error(ssl, ret)) {
60 SSL *ssl = get_ssl(bio) local
94 SSL *ssl = get_ssl(bio); local
141 SSL *ssl = get_ssl(bio); local
156 SSL *ssl = get_ssl(bio); local
    [all...]
handshake_server.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
149 #include <openssl/ssl.h>
188 SSL *const ssl = hs->ssl; local
191 assert(ssl->handshake_func == ssl3_accept);
192 assert(ssl->server)
472 SSL *const ssl = hs->ssl; local
584 SSL *const ssl = hs->ssl; local
614 SSL *const ssl = hs->ssl; local
685 SSL *const ssl = hs->ssl; local
756 SSL *const ssl = hs->ssl; local
802 SSL *const ssl = hs->ssl; local
931 SSL *const ssl = hs->ssl; local
986 SSL *const ssl = hs->ssl; local
1072 SSL *const ssl = hs->ssl; local
1144 SSL *const ssl = hs->ssl; local
1178 SSL *const ssl = hs->ssl; local
1275 SSL *const ssl = hs->ssl; local
1525 SSL *const ssl = hs->ssl; local
1624 SSL *const ssl = hs->ssl; local
1655 SSL *const ssl = hs->ssl; local
1670 SSL *const ssl = hs->ssl; local
    [all...]
  /external/curl/docs/cmdline-opts/
ftp-ssl.d 1 Long: ftp-ssl
2 Help: Try SSL/TLS
3 Redirect: ssl
ftp-ssl-reqd.d 1 Long: ftp-ssl-reqd
2 Help: Require SSL/TLS
3 Redirect: ssl-reqd
  /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;
  /external/conscrypt/android-stub/src/main/java/javax/net/ssl/
SNIServerName.java 17 package javax.net.ssl;
StandardConstants.java 17 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;
28 import javax.net.ssl.HandshakeCompletedEvent;
29 import javax.net.ssl.HandshakeCompletedListener;
30 import javax.net.ssl.KeyManager;
31 import javax.net.ssl.KeyManagerFactory;
32 import javax.net.ssl.SSLContext;
33 import javax.net.ssl.SSLServerSocket;
34 import javax.net.ssl.SSLSocket;
35 import javax.net.ssl.SSLSocketFactory;
36 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
266 SSLSocket ssl = getSSLSocket(); local
280 SSLSocket ssl = getSSLSocket(); local
293 SSLSocket ssl = getSSLSocket(); local
305 SSLSocket ssl = getSSLSocket(); local
316 SSLSocket ssl = getSSLSocket(); local
339 SSLSocket ssl = getSSLSocket(); local
348 SSLSocket ssl = getSSLSocket(); local
359 SSLSocket ssl = getSSLSocket(); local
385 SSLSocket ssl = getSSLSocket(); local
409 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;
  /libcore/luni/src/test/java/libcore/javax/net/ssl/
SSLServerSocketFactoryTest.java 17 package libcore.javax.net.ssl;
19 import javax.net.ssl.SSLServerSocketFactory;
  /external/conscrypt/common/src/main/java/org/conscrypt/
HandshakeListener.java 19 import javax.net.ssl.SSLException;
22 * Similar in concept to {@link javax.net.ssl.HandshakeCompletedListener}, but used for listening directly

Completed in 307 milliseconds

1 2 3 4 5 6 7 8 91011>>