rustls: remove incorrect SSLSUPP_TLS13_CIPHERSUITES flag

The rustls backend advertises SSLSUPP_TLS13_CIPHERSUITES, but
the code does not actually seem to support it (yet?). Removed
the flag and corrected documentation.

Closes #13452
This commit is contained in:
Jan Venekamp 2024-04-23 17:59:46 +02:00 committed by Daniel Stenberg
parent cfb9991723
commit 3b8db84c1b
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2
3 changed files with 0 additions and 3 deletions

View File

@ -14,7 +14,6 @@ Protocol:
- TLS - TLS
TLS-backend: TLS-backend:
- OpenSSL - OpenSSL
- rustls
- Schannel - Schannel
--- ---

View File

@ -15,7 +15,6 @@ Protocol:
- TLS - TLS
TLS-backend: TLS-backend:
- OpenSSL - OpenSSL
- rustls
- Schannel - Schannel
--- ---

View File

@ -725,7 +725,6 @@ static size_t cr_version(char *buffer, size_t size)
const struct Curl_ssl Curl_ssl_rustls = { const struct Curl_ssl Curl_ssl_rustls = {
{ CURLSSLBACKEND_RUSTLS, "rustls" }, { CURLSSLBACKEND_RUSTLS, "rustls" },
SSLSUPP_CAINFO_BLOB | /* supports */ SSLSUPP_CAINFO_BLOB | /* supports */
SSLSUPP_TLS13_CIPHERSUITES |
SSLSUPP_HTTPS_PROXY, SSLSUPP_HTTPS_PROXY,
sizeof(struct rustls_ssl_backend_data), sizeof(struct rustls_ssl_backend_data),