Home
last modified time | relevance | path

Searched refs:ssl (Results 1 – 25 of 116) sorted by relevance

12345

/curl/docs/cmdline-opts/
H A Dproxy-ssl-allow-beast.md4 Long: proxy-ssl-allow-beast
10 - ssl-allow-beast
13 - --proxy-ssl-allow-beast -x https://proxy $URL
16 # `--proxy-ssl-allow-beast`
18 Same as --ssl-allow-beast but used in HTTPS proxy context.
H A Dssl.md4 Long: ssl
11 - ssl-reqd
15 - --ssl pop3://example.com/
18 # `--ssl`
20 Warning: this is considered an insecure option. Consider using --ssl-reqd
25 server does not support SSL/TLS. See also --ftp-ssl-control and --ssl-reqd for
34 This option was formerly known as --ftp-ssl (added in 7.11.0). That option
H A Dproxy-ssl-auto-client-cert.md4 Long: proxy-ssl-auto-client-cert
10 - ssl-auto-client-cert
13 - --proxy-ssl-auto-client-cert -x https://proxy $URL
16 # `--proxy-ssl-auto-client-cert`
18 Same as --ssl-auto-client-cert but used in HTTPS proxy context.
H A Dftp-ssl-ccc.md4 Long: ftp-ssl-ccc
11 - ssl
12 - ftp-ssl-ccc-mode
14 - --ftp-ssl-ccc ftps://example.com/
17 # `--ftp-ssl-ccc`
H A Dftp-ssl-ccc-mode.md4 Long: ftp-ssl-ccc-mode
12 - ftp-ssl-ccc
14 - --ftp-ssl-ccc-mode active --ftp-ssl-ccc ftps://example.com/
17 # `--ftp-ssl-ccc-mode`
H A Dftp-ssl-control.md4 Long: ftp-ssl-control
11 - ssl
13 - --ftp-ssl-control ftp://example.com
16 # `--ftp-ssl-control`
H A Dssl-auto-client-cert.md4 Long: ssl-auto-client-cert
11 - proxy-ssl-auto-client-cert
13 - --ssl-auto-client-cert $URL
16 # `--ssl-auto-client-cert`
H A Dssl-allow-beast.md4 Long: ssl-allow-beast
11 - proxy-ssl-allow-beast
14 - --ssl-allow-beast $URL
17 # `--ssl-allow-beast`
H A Dssl-reqd.md4 Long: ssl-reqd
11 - ssl
14 - --ssl-reqd ftp://example.com
17 # `--ssl-reqd`
31 This option was formerly known as --ftp-ssl-reqd.
H A Dssl-no-revoke.md4 Long: ssl-no-revoke
13 - --ssl-no-revoke $URL
16 # `--ssl-no-revoke`
H A Dssl-revoke-best-effort.md4 Long: ssl-revoke-best-effort
14 - --ssl-revoke-best-effort $URL
17 # `--ssl-revoke-best-effort`
H A DMakefile.inc114 ftp-ssl-ccc-mode.md \
115 ftp-ssl-ccc.md \
116 ftp-ssl-control.md \
216 proxy-ssl-allow-beast.md \
217 proxy-ssl-auto-client-cert.md \
262 ssl-allow-beast.md \
263 ssl-auto-client-cert.md \
264 ssl-no-revoke.md \
265 ssl-reqd.md \
266 ssl-revoke-best-effort.md \
[all …]
/curl/lib/vquic/
H A Dvquic-tls.c74 (void)ssl; in keylog_callback()
175 if(data->set.ssl.fsslctx) { in curl_wssl_init_ctx()
204 DEBUGASSERT(!ctx->ssl); in curl_wssl_init_ssl()
206 ctx->ssl = wolfSSL_new(ctx->ssl_ctx); in curl_wssl_init_ssl()
208 wolfSSL_set_app_data(ctx->ssl, user_data); in curl_wssl_init_ssl()
209 wolfSSL_set_connect_state(ctx->ssl); in curl_wssl_init_ssl()
217 wolfSSL_UseSNI(ctx->ssl, WOLFSSL_SNI_HOST_NAME, in curl_wssl_init_ssl()
260 if(ctx->ossl.ssl) in Curl_vquic_tls_cleanup()
261 SSL_free(ctx->ossl.ssl); in Curl_vquic_tls_cleanup()
270 if(ctx->ssl) in Curl_vquic_tls_cleanup()
[all …]
H A Dcurl_osslq.c215 SSL *ssl; member
229 DEBUGASSERT(!s->ssl); in cf_osslq_stream_open()
232 if(!s->ssl) { in cf_osslq_stream_open()
242 if(s->ssl) { in cf_osslq_stream_cleanup()
244 SSL_free(s->ssl); in cf_osslq_stream_cleanup()
252 if(s->ssl) { in cf_osslq_stream_close()
253 SSL_free(s->ssl); in cf_osslq_stream_close()
254 s->ssl = NULL; in cf_osslq_stream_close()
1320 if(!ctx->tls.ossl.ssl) in cf_progress_ingress()
1449 ok = !s->ssl || SSL_write_ex2(s->ssl, vec[i].base, vec[i].len, flags, in h3_send_streams()
[all …]
/curl/
H A DMakefile.dist29 ssl:
49 cygwin-ssl:
59 unix-ssl: ssl
63 linux-ssl: ssl
/curl/docs/
H A Doptions-in-versions79 --ftp-ssl-ccc 7.16.1
80 --ftp-ssl-ccc-mode 7.16.2
81 --ftp-ssl-control 7.16.0
182 --proxy-ssl-allow-beast 7.52.0
183 --proxy-ssl-auto-client-cert 7.77.0
227 --ssl 7.20.0
228 --ssl-allow-beast 7.25.0
229 --ssl-auto-client-cert 7.77.0
230 --ssl-no-revoke 7.44.0
231 --ssl-reqd 7.20.0
[all …]
/curl/lib/vtls/
H A Dopenssl.c412 DEBUGASSERT(ssl); in Curl_ossl_certchain()
832 (void)ssl; in ossl_keylog_callback()
1272 SSL *ssl; in cert_stuff() local
1591 if(!ssl) { in cert_stuff()
1627 SSL_free(ssl); in cert_stuff()
1876 if(octx->ssl) { in ossl_close()
1990 if(octx->ssl) { in ossl_shutdown()
2738 (void) ssl; in ossl_trace()
3848 if(octx->ssl) in Curl_ossl_ctx_init()
3851 if(!octx->ssl) { in Curl_ossl_ctx_init()
[all …]
H A Dopenssl.h43 SSL* ssl; member
60 typedef int Curl_ossl_new_session_cb(SSL *ssl, SSL_SESSION *ssl_sessionid);
88 CURLcode Curl_ossl_certchain(struct Curl_easy *data, SSL *ssl);
H A Dmbedtls.c101 mbedtls_ssl_context ssl; member
743 mbedtls_ssl_init(&backend->ssl); in mbed_connect_step1()
785 mbedtls_ssl_set_bio(&backend->ssl, cf, in mbed_connect_step1()
885 if(data->set.ssl.fsslctx) { in mbed_connect_step1()
918 ret = mbedtls_ssl_handshake(&backend->ssl);
948 ret = mbedtls_ssl_get_verify_result(&backend->ssl);
973 peercert = mbedtls_ssl_get_peer_cert(&backend->ssl);
1180 ret = mbedtls_ssl_close_notify(&backend->ssl);
1191 mbedtls_ssl_free(&backend->ssl);
1452 return mbedtls_ssl_get_bytes_avail(&backend->ssl) != 0;
[all …]
/curl/docs/examples/
H A DMakefile.inc77 imap-ssl \
101 pop3-ssl \
128 smtp-ssl \
156 threaded-ssl.c \
H A D.gitignore50 imap-ssl
69 pop3-ssl
94 smtp-ssl
/curl/packages/vms/
H A Dcurl_startup.com56 $ gnv_ssl_libcrypto32 = "gnv$gnu:[lib]ssl$libcrypto_shr32.exe"
57 $ gnv_ssl_libssl32 = "gnv$gnu:[lib]ssl$libssl_shr32.exe"
63 $ hp_ssl_libcrypto32 = "sys$share:ssl$libcrypto_shr32.exe"
64 $ hp_ssl_libssl32 = "sys$share:ssl$libssl_shr32.exe"
/curl/tests/data/
H A Dtest98638 --ssl-reqd --ftp-ssl-control ftp://%HOSTIP:%FTPPORT/%TESTNUMBER -T %LOGDIR/test%TESTNUMBER.txt -u u…
H A Dtest98338 --ssl --ftp-ssl-control ftp://%HOSTIP:%FTPPORT/%TESTNUMBER -T %LOGDIR/test%TESTNUMBER.txt -u user:s…
/curl/tests/certs/scripts/
H A Dgenroot.sh30 if [ -f /usr/local/ssl/bin/openssl ]; then
31 OPENSSL=/usr/local/ssl/bin/openssl

Completed in 49 milliseconds

12345