summaryrefslogtreecommitdiff
path: root/docs/CIPHERS.md
Commit message (Collapse)AuthorAgeFilesLines
* docs/CIPHERS: fix the TLS 1.3 cipher namesDaniel Stenberg2018-10-271-5/+5
| | | | | | | | ... picked straight from the OpenSSL man page: https://www.openssl.org/docs/manmaster/man3/SSL_CTX_set_ciphersuites.html Reported-by: Ricky-Tigg on github Bug: #3178
* CIPHERS.md: Mention the options used to set TLS 1.3 ciphersJay Satiro2018-10-231-3/+12
| | | | Closes https://github.com/curl/curl/pull/3159
* docs/CIPHERS: mention the colon separation for OpenSSLDaniel Stenberg2018-10-021-0/+2
| | | | Bug: #3077
* schannel: support selecting ciphersRobert Prag2018-06-121-0/+51
| | | | | | | | | | | | | | Given the contstraints of SChannel, I'm exposing these as the algorithms themselves instead; while replicating the ciphersuite as specified by OpenSSL would have been preferable, I found no way in the SChannel API to do so. To use this from the commandline, you need to pass the names of contants defining the desired algorithms. For example, curl --ciphers "CALG_SHA1:CALG_RSA_SIGN:CALG_RSA_KEYX:CALG_AES_128:CALG_DH_EPHEM" https://github.com The specific names come from wincrypt.h Closes #2630
* setopt: add TLS 1.3 ciphersuitesDaniel Stenberg2018-05-291-0/+10
| | | | | | | | | | Adds CURLOPT_TLS13_CIPHERS and CURLOPT_PROXY_TLS13_CIPHERS. curl: added --tls13-ciphers and --proxy-tls13-ciphers Fixes #2435 Reported-by: zzq1015 on github Closes #2607
* docs/comments: Update to secure URL versionsViktor Szakats2017-08-081-1/+1
| | | | Closes #1741
* wolfssl: support setting cipher listDan Fandrich2017-01-061-0/+113
|
* CIPHERS.md: document GSKit ciphersPatrick Monnerat2017-01-061-0/+64
|
* CIPHERS.md: backtick the names to show underscores fineDaniel Stenberg2016-12-181-186/+185
|
* CIPHERS.md: attempt to document TLS cipher namesDaniel Stenberg2016-12-181-0/+250
As the official docs seems really hard to keep track of and link to over time