diff options
author | Daniel Stenberg <daniel@haxx.se> | 2018-10-26 13:33:34 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2018-10-27 10:46:36 +0200 |
commit | 067992baa7fc616086237a8f917beaf0e05a4d7d (patch) | |
tree | 6bf40bb2688a80fbbae7b16d7ac31783eb7caaf2 /docs | |
parent | ac85e49d7ad88060e3380e30c143097f96c66423 (diff) | |
download | curl-067992baa7fc616086237a8f917beaf0e05a4d7d.tar.gz |
docs/CIPHERS: fix the TLS 1.3 cipher names
... 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
Diffstat (limited to 'docs')
-rw-r--r-- | docs/CIPHERS.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/CIPHERS.md b/docs/CIPHERS.md index 8c3148e8d..0d3be3b56 100644 --- a/docs/CIPHERS.md +++ b/docs/CIPHERS.md @@ -157,11 +157,11 @@ When specifying multiple cipher names, separate them with colon (`:`). (Note these ciphers are set with `CURLOPT_TLS13_CIPHERS` and `--tls13-ciphers`) -`TLS13-AES-256-GCM-SHA384` -`TLS13-CHACHA20-POLY1305-SHA256` -`TLS13-AES-128-GCM-SHA256` -`TLS13-AES-128-CCM-8-SHA256` -`TLS13-AES-128-CCM-SHA256` +`TLS_AES_256_GCM_SHA384` +`TLS_CHACHA20_POLY1305_SHA256` +`TLS_AES_128_GCM_SHA256` +`TLS_AES_128_CCM_8_SHA256` +`TLS_AES_128_CCM_SHA256` ## NSS |