HomeSort by relevance Sort by last modified time
    Searched refs:SSL (Results 26 - 50 of 178) sorted by null

12 3 4 5 6 7 8

  /external/boringssl/src/ssl/
tls_record.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>
139 /* ssl_needs_record_splitting returns one if |ssl|'s current outgoing cipher
141 static int ssl_needs_record_splitting(const SSL *ssl) {
143 return ssl->s3->aead_write_ctx != NULL &&
144 ssl->s3->aead_write_ctx->version < TLS1_1_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...]
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...]
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...]
tls13_both.cc 15 #include <openssl/ssl.h>
37 SSL *const ssl = hs->ssl; local
42 OPENSSL_PUT_ERROR(SSL, SSL_R_SSL_HANDSHAKE_FAILURE);
47 int ret = ssl->method->flush_flight(ssl);
54 ssl->method->expect_flight(ssl);
60 int ret = ssl->method->ssl_get_message(ssl)
187 SSL *const ssl = hs->ssl; local
375 SSL *const ssl = hs->ssl; local
426 SSL *const ssl = hs->ssl; local
458 SSL *const ssl = hs->ssl; local
530 SSL *const ssl = hs->ssl; local
581 SSL *const ssl = hs->ssl; local
    [all...]
ssl_versions.cc 15 #include <openssl/ssl.h>
105 OPENSSL_PUT_ERROR(SSL, SSL_R_UNKNOWN_SSL_VERSION);
114 OPENSSL_PUT_ERROR(SSL, SSL_R_UNKNOWN_SSL_VERSION);
125 /* SSL 3.0 is disabled by default and TLS 1.0 does not exist in DTLS. */
152 int SSL_set_min_proto_version(SSL *ssl, uint16_t version) {
153 return set_min_version(ssl->method, &ssl->conf_min_version, version);
156 int SSL_set_max_proto_version(SSL *ssl, uint16_t version)
303 SSL *const ssl = hs->ssl; local
    [all...]
ssl_privkey.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
57 #include <openssl/ssl.h>
79 OPENSSL_PUT_ERROR(SSL, SSL_R_UNKNOWN_CERTIFICATE_TYPE);
97 int SSL_use_RSAPrivateKey(SSL *ssl, RSA *rsa) {
102 OPENSSL_PUT_ERROR(SSL, ERR_R_PASSED_NULL_PARAMETER);
108 OPENSSL_PUT_ERROR(SSL, ERR_R_EVP_LIB)
445 SSL *const ssl = hs->ssl; local
482 SSL *const ssl = hs->ssl; local
512 SSL *const ssl = hs->ssl; 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...]
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...]
t1_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
109 #include <openssl/ssl.h>
173 OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE);
205 int ssl_client_hello_init(SSL *ssl, SSL_CLIENT_HELLO *out, const uint8_t *in,
208 out->ssl = ssl;
323 SSL *const ssl = hs->ssl; local
616 SSL *const ssl = hs->ssl; local
638 SSL *const ssl = hs->ssl; local
722 SSL *const ssl = hs->ssl; local
746 SSL *const ssl = hs->ssl; local
829 SSL *const ssl = hs->ssl; local
863 SSL *const ssl = hs->ssl; local
902 SSL *const ssl = hs->ssl; local
965 SSL *const ssl = hs->ssl; local
1001 SSL *const ssl = hs->ssl; local
1045 SSL *const ssl = hs->ssl; local
1089 SSL *const ssl = hs->ssl; local
1109 SSL *const ssl = hs->ssl; local
1152 SSL *const ssl = hs->ssl; local
1173 SSL *const ssl = hs->ssl; local
1190 SSL *const ssl = hs->ssl; local
1249 SSL *const ssl = hs->ssl; local
1270 SSL *const ssl = hs->ssl; local
1304 SSL *const ssl = hs->ssl; local
1319 SSL *const ssl = hs->ssl; local
1369 SSL *const ssl = hs->ssl; local
1393 SSL *const ssl = hs->ssl; local
1414 SSL *const ssl = hs->ssl; local
1481 SSL *const ssl = hs->ssl; local
1536 SSL *const ssl = hs->ssl; local
1565 SSL *const ssl = hs->ssl; local
1581 SSL *const ssl = hs->ssl; local
1599 SSL *const ssl = hs->ssl; local
1615 SSL *const ssl = hs->ssl; local
1639 SSL *const ssl = hs->ssl; local
1673 SSL *const ssl = hs->ssl; local
1721 SSL *const ssl = hs->ssl; local
1764 SSL *const ssl = hs->ssl; local
1847 SSL *const ssl = hs->ssl; local
1869 SSL *const ssl = hs->ssl; local
1880 SSL *const ssl = hs->ssl; local
2058 SSL *const ssl = hs->ssl; local
2080 SSL *const ssl = hs->ssl; local
2102 SSL *const ssl = hs->ssl; local
2137 SSL *const ssl = hs->ssl; local
2343 SSL *const ssl = hs->ssl; local
2402 SSL *const ssl = hs->ssl; local
2668 SSL *const ssl = hs->ssl; local
2784 SSL *const ssl = hs->ssl; local
2823 SSL *const ssl = hs->ssl; local
2908 SSL *const ssl = hs->ssl; local
2925 SSL *const ssl = hs->ssl; local
3004 SSL *const ssl = hs->ssl; local
3031 SSL *const ssl = hs->ssl; local
3260 SSL *const ssl = hs->ssl; local
3314 SSL *const ssl = hs->ssl; local
3384 SSL *const ssl = hs->ssl; local
3434 SSL *const ssl = hs->ssl; local
3480 SSL *const ssl = hs->ssl; local
    [all...]
handshake_client.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
150 #include <openssl/ssl.h>
188 SSL *const ssl = hs->ssl; local
191 assert(ssl->handshake_func == ssl3_connect);
192 assert(!ssl->server)
570 SSL *const ssl = hs->ssl; local
648 SSL *const ssl = hs->ssl; local
716 SSL *const ssl = hs->ssl; local
776 SSL *const ssl = hs->ssl; local
809 SSL *const ssl = hs->ssl; local
881 SSL *const ssl = hs->ssl; local
1076 SSL *const ssl = hs->ssl; local
1120 SSL *const ssl = hs->ssl; local
1177 SSL *const ssl = hs->ssl; local
1234 SSL *const ssl = hs->ssl; local
1424 SSL *const ssl = hs->ssl; local
1493 SSL *const ssl = hs->ssl; local
1515 SSL *const ssl = hs->ssl; local
1555 SSL *const ssl = hs->ssl; local
1734 SSL *const ssl = hs->ssl; local
1815 SSL *const ssl = hs->ssl; local
1836 SSL *const ssl = hs->ssl; local
1859 SSL *const ssl = hs->ssl; local
    [all...]
ssl_x509.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>
158 /* check_ssl_x509_method asserts that |ssl| has the X509-based method
159 * installed. Calling an X509-based method on an |ssl| with a different method
161 static void check_ssl_x509_method(const SSL *ssl) {
162 assert(ssl == NULL || ssl->ctx->x509_method == &ssl_crypto_x509_method)
    [all...]
custom_extensions.cc 15 #include <openssl/ssl.h>
51 static int default_add_callback(SSL *ssl, unsigned extension_value,
54 if (ssl->server) {
62 SSL *const ssl = hs->ssl; local
63 STACK_OF(SSL_CUSTOM_EXTENSION) *stack = ssl->ctx->client_custom_extensions;
64 if (ssl->server) {
65 stack = ssl->ctx->server_custom_extensions
139 SSL *const ssl = hs->ssl; local
167 SSL *const ssl = hs->ssl; local
    [all...]
ssl_stat.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
84 #include <openssl/ssl.h>
91 static int ssl_state(const SSL *ssl) {
92 if (ssl->s3->hs == NULL) {
93 assert(ssl->s3->initial_handshake_complete);
97 return ssl->s3->hs->state
    [all...]
t1_enc.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>
280 OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR);
289 OPENSSL_PUT_ERROR(SSL, ERR_LIB_EVP);
304 OPENSSL_PUT_ERROR(SSL, ERR_LIB_EVP);
327 SSL *const ssl = hs->ssl local
    [all...]
dtls_record.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>
175 enum ssl_open_record_t dtls_open_record(SSL *ssl, uint8_t *out_type, CBS *out,
193 (ssl->s3->have_version && version != ssl->version) ||
201 ssl_do_msg_callback(ssl, 0 /* read */, SSL3_RT_HEADER, in
    [all...]
  /external/curl/docs/cmdline-opts/
tlsv1.d 4 Protocols: SSL
13 the TLS version more precisely (if the SSL backend in use supports such a
egd-file.d 7 used to seed the random engine for SSL connections.
ciphers.d 3 help: SSL ciphers to use
7 specify valid ciphers. Read up on SSL cipher list details on this URL:
cert.d 9 with HTTPS, FTPS or another SSL-based protocol. The certificate must be in
16 If curl is built against the NSS SSL library then this option can tell
ftp-ssl-ccc.d 1 Long: ftp-ssl-ccc
4 See-also: ssl ftp-ssl-ccc-mode
7 Use CCC (Clear Command Channel) Shuts down the SSL/TLS layer after
no-alpn.d 10 with an SSL library that supports ALPN. ALPN is used by a libcurl that supports
  /system/netd/server/dns/
DnsTlsTransport.h 29 typedef struct ssl_st SSL;
56 SSL* sslConnect(int fd);
59 bool sslWrite(int fd, SSL *ssl, const uint8_t *buffer, int len);
63 bool sslRead(int fd, SSL *ssl, uint8_t *buffer, int len);
  /external/webrtc/webrtc/base/
openssladapter.h 19 typedef struct ssl_st SSL;
44 // Note that the socket returns ST_CONNECTING while SSL is being negotiated.
67 static bool VerifyServerName(SSL* ssl, const char* host,
69 bool SSLPostConnectionCheck(SSL* ssl, const char* host);
71 static void SSLInfoCallback(const SSL* s, int where, int ret);
83 // If true, socket will retain SSL configuration after Close.
86 SSL* ssl_;

Completed in 477 milliseconds

12 3 4 5 6 7 8