/curl/tests/data/ |
H A D | test31 | 27 Set-Cookie: foobar=name; domain=anything.com; path=/ ; secure 32 Set-Cookie: sec1value=secure1 ; domain=test31.curl; path=/secure1/ ; secure 33 Set-Cookie: sec2value=secure2 ; domain=test31.curl; path=/secure2/ ; secure= 34 Set-Cookie: sec3value=secure3 ; domain=test31.curl; path=/secure3/ ; secure= 35 Set-Cookie: sec4value=secure4 ; secure=; domain=test31.curl; path=/secure4/ ; 36 Set-Cookie: sec5value=secure5 ; secure; domain=test31.curl; path=/secure5/ ; 40 Set-Cookie: secure=very1 ; secure=; domain=test31.curl; path=/secure9/; 75 Set-Cookie: securewithspace=after ; secure = 77 Set-Cookie: foobar=name; domain=anything.com; path=/ ; secure 90 Set-Cookie: secure=very1 ; secure=; domain=test31.curl; path=/secure9/; [all …]
|
H A D | test392 | 7 secure 19 Set-Cookie: foobar=name; path=/; secure 31 HTTP secure cookies over localhost
|
H A D | test1562 | 18 Set-Cookie: foo=123; path=/; secure; 44 Expire secure cookies over HTTPS
|
H A D | test1561 | 19 Set-Cookie: super=secret; domain=example.com; path=/%TESTNUMBER; secure; 20 Set-Cookie: supersuper=secret; domain=example.com; path=/%TESTNUMBER/login/; secure; 44 Set-Cookie: secureoverhttp=yes; domain=example.com; path=/%TESTNUMBER; secure; 72 Cookies set over HTTP can't override secure ones
|
H A D | test61 | 27 Set-Cookie: test3=maybe; domain=foo.com; path=/moo; secure 28 Set-Cookie: test4=no; domain=nope.foo.com; path=/moo; secure 29 Set-Cookie: test5=name; domain=anything.com; path=/ ; secure
|
H A D | test414 | 18 Set-Cookie: SESSIONID=originaltoken; secure 19 Set-Cookie: second=originaltoken; secure; path=/a
|
/curl/lib/ |
H A D | cookie.h | 43 BIT(secure); /* the 'secure' keyword was used */ 117 bool secure); 121 const char *path, bool secure,
|
H A D | cookie.c | 600 if(secure || !ci->running) { in parse_cookie_header() 601 co->secure = TRUE; in parse_cookie_header() 886 co->secure = FALSE; in parse_netscape() 888 if(secure || ci->running) in parse_netscape() 889 co->secure = TRUE; in parse_netscape() 985 bool secure, in replace_existing() argument 1008 clist->secure && !co->secure && !secure) { in replace_existing() 1130 if(co->prefix_secure && !co->secure) in Curl_cookie_add() 1353 bool secure, in Curl_cookie_getlist() argument 1377 if(co->secure ? secure : TRUE) { in Curl_cookie_getlist() [all …]
|
/curl/docs/cmdline-opts/ |
H A D | insecure.md | 21 By default, every secure connection curl makes is verified to be secure before 38 When curl uses secure protocols it trusts responses and allows for example
|
H A D | proxy-insecure.md | 20 Every secure connection curl makes is verified to be secure before the
|
H A D | ssl.md | 21 instead to be sure curl upgrades to a secure connection. 24 because of the involved commands. Reverts to a non-secure connection if the
|
H A D | ftp-ssl-control.md | 18 Require SSL/TLS for the FTP login, clear for transfer. Allows secure
|
H A D | doh-insecure.md | 20 secure before the transfer takes place. This option tells curl to skip the
|
H A D | anyauth.md | 20 Figure out authentication method automatically, and use the most secure one
|
/curl/docs/libcurl/opts/ |
H A D | CURLOPT_HTTPAUTH.md | 52 is a more secure way to do authentication over public networks than the 58 in RFC 2617 and is a more secure way to do authentication over public networks 72 in RFC 4559 and is the most secure way to perform authentication over HTTP. 106 it finds suitable. libcurl automatically selects the one it finds most secure. 112 finds most secure.
|
H A D | CURLOPT_SSL_VERIFYPEER.md | 67 When libcurl uses secure protocols it trusts responses and allows for example
|
H A D | CURLOPT_SSLVERSION.md | 37 version to be more and more secure in this order through history: SSL v2,
|
H A D | CURLOPT_SSL_VERIFYHOST.md | 60 When libcurl uses secure protocols it trusts responses and allows for example
|
/curl/m4/ |
H A D | curl-sectransp.m4 | 34 test secure-transport != "$DEFAULT_SSL_BACKEND" || VALID_DEFAULT_SSL_BACKEND=yes
|
/curl/.github/workflows/ |
H A D | macos.yml | 115 … configure: --enable-debug --with-secure-transport --with-libssh2=$(brew --prefix libssh2) 119 … configure: --enable-debug --with-secure-transport --with-libssh2=$(brew --prefix libssh2) 124 … configure: --enable-debug --with-secure-transport --with-libssh2=$(brew --prefix libssh2) 275 …generate, '-DCURL_USE_SECTRANSP=ON') || contains(matrix.build.configure, '--with-secure-transport') 323 if [[ '${{ matrix.build.configure }}' = *'--with-secure-transport'* || \ 330 if [[ '${{ matrix.build.configure }}' = *'--with-secure-transport'* || \ 460 [ '${{ matrix.config }}' = 'SecureTransport' ] && options+=' --with-secure-transport'
|
/curl/packages/OS400/ |
H A D | README.OS400 | 237 _ FTP with secure transmission 243 _ IMAP with secure transmission 247 _ POP3 with secure transmission 253 _ SMTP with secure transmission
|
/curl/ |
H A D | configure.ac | 152 …curl_ssl_msg="no (--with-{openssl,gnutls,mbedtls,wolfssl,schannel,secure-transport,amissl,bea… 222 AC_ARG_WITH(secure-transport,dnl 223 AS_HELP_STRING([--with-secure-transport],[enable Apple OS native SSL/TLS]),[ 424 --with-secure-transport 2165 Use --with-openssl, --with-gnutls, --with-wolfssl, --with-mbedtls, --with-schannel, --with-secure-t… 2178 (e.g. --with-openssl, --with-gnutls, --with-wolfssl, --with-mbedtls, --with-schannel, --with-secure… 5550 [non13=`echo "$TLSCHOICE" | $AWK '{split("bearssl secure-transport", a); for (i in a) if(match(tolo…
|
/curl/docs/libcurl/ |
H A D | libcurl-tutorial.md | 413 you are using an SSL private key for secure transfers. 446 to make libcurl pick the most secure one out of the types the server/proxy 888 SSL is for secure point-to-point connections. This involves strong encryption
|
H A D | libcurl-security.md | 415 A secure application should never use the CURLOPT_SSL_VERIFYPEER(3)
|
/curl/docs/ |
H A D | TODO | 792 cryptographic protocols that provide secure communication based on pre-shared
|