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

1 2 3 4 5 6 7 8

  /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
no-sessionid.d 2 Help: Disable SSL session-ID reusing
6 Disable curl's use of SSL session-ID caching. By default all transfers are
8 attempting to reuse SSL session-IDs, there seem to be broken SSL
ftp-ssl-control.d 1 Long: ftp-ssl-control
2 Help: Require SSL/TLS for FTP login, clear for transfer
6 Require SSL/TLS for the FTP login, clear for transfer. Allows secure
8 transfer if the server doesn't support SSL/TLS.
insecure.d 3 Help: Allow insecure connections when using SSL
6 This option explicitly allows curl to perform "insecure" SSL connections and
7 transfers. All SSL connections are attempted to be made secure by using the CA
sslv2.d 4 Protocols: SSL
11 Forces curl to use SSL version 2 when negotiating with a remote SSL
sslv3.d 4 Protocols: SSL
11 Forces curl to use SSL version 3 when negotiating with a remote SSL
  /external/conscrypt/common/src/jni/main/include/
ScopedSslBio.h 20 #include <openssl/ssl.h>
25 * Sets the read and write BIO for an SSL connection and removes it when it goes out of scope.
30 ScopedSslBio(SSL* ssl, BIO* rbio, BIO* wbio) : ssl_(ssl) {
41 SSL* const ssl_;
OpenSslError.h 20 #include <openssl/ssl.h>
26 * instantiate this object during an SSL call that may fail and not worry
36 OpenSslError(SSL* ssl, int returnCode) : sslError_(SSL_ERROR_NONE), released_(false) {
37 reset(ssl, returnCode);
50 void reset(SSL* ssl, int returnCode) {
52 sslError_ = SSL_get_error(ssl, returnCode);
  /external/boringssl/src/ssl/
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
148 #include <openssl/ssl.h>
194 int ssl_get_version_range(const SSL *ssl, uint16_t *out_min_version,
212 /* ssl3_protocol_version returns |ssl|'s protocol version. It is an error to
214 uint16_t ssl3_protocol_version(const SSL *ssl);
1014 SSL *ssl; member in struct:ssl_handshake_st
    [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...]
ssl_asn1.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
90 #include <openssl/ssl.h>
222 OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE);
233 OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE);
243 OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE);
250 OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE);
260 OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE)
    [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_file.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
111 #include <openssl/ssl.h>
143 OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE);
158 OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE);
208 OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE);
250 int SSL_use_certificate_file(SSL *ssl, const char *file, int type)
    [all...]
d1_srtp.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
117 #include <openssl/ssl.h>
166 OPENSSL_PUT_ERROR(SSL, SSL_R_SRTP_COULD_NOT_ALLOCATE_PROFILES);
178 OPENSSL_PUT_ERROR(SSL, SSL_R_SRTP_UNKNOWN_PROTECTION_PROFILE);
204 int SSL_set_srtp_profiles(SSL *ssl, const char *profiles) {
205 return ssl_ctx_make_profiles(profiles, &ssl->srtp_profiles)
    [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...]
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...]
tls_method.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>
70 static void ssl3_expect_flight(SSL *ssl) {}
72 static void ssl3_received_flight(SSL *ssl) {}
74 static int ssl3_set_read_state(SSL *ssl, SSL_AEAD_CTX *aead_ctx)
    [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...]
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_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...]
  /external/wpa_supplicant_8/src/crypto/
tls_openssl.h 2 * SSL/TLS interface functions for OpenSSL
16 enum ocsp_result check_ocsp_resp(SSL_CTX *ssl_ctx, SSL *ssl, X509 *cert,
  /external/boringssl/src/include/openssl/
ssl.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
171 /* SSL implementation. */
174 /* SSL contexts.
205 /* SSL connections.
207 * An |SSL| object represents a single TLS or DTLS connection. Although the
208 * shared |SSL_CTX| is thread-safe, an |SSL| is not thread-safe and may only be
211 /* SSL_new returns a newly-allocated |SSL| using |ctx| or NULL on error. The ne
1405 OPENSSL_EXPORT STACK_OF(SSL_CIPHER) *SSL_get_ciphers(const SSL *ssl); variable
1439 OPENSSL_EXPORT STACK_OF(X509) *SSL_get_peer_cert_chain(const SSL *ssl); variable
1451 OPENSSL_EXPORT STACK_OF(X509) *SSL_get_peer_full_cert_chain(const SSL *ssl); variable
1460 SSL_get0_peer_certificates(const SSL *ssl); variable
2418 OPENSSL_EXPORT STACK_OF(X509_NAME) *SSL_get_client_CA_list(const SSL *ssl); variable
2428 const SSL *ssl); variable
2737 SSL *ssl); variable
3200 SSL *ssl; member in struct:ssl_early_callback_ctx
    [all...]
  /external/boringssl/src/decrepit/ssl/
ssl_decrepit.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
111 #include <openssl/ssl.h>
127 OPENSSL_PUT_ERROR(SSL, ERR_R_SYS_LIB);
139 OPENSSL_PUT_ERROR(SSL, ERR_R_SYS_LIB);
149 OPENSSL_PUT_ERROR(SSL, SSL_R_PATH_TOO_LONG);
  /external/boringssl/src/tool/
transport_common.h 18 #include <openssl/ssl.h>
52 void PrintConnectionInfo(const SSL *ssl);
58 bool TransferData(SSL *ssl, int sock);

Completed in 375 milliseconds

1 2 3 4 5 6 7 8