diff options
author | Jay Satiro <raysatiro@yahoo.com> | 2018-08-31 19:46:29 -0400 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2018-09-03 13:14:45 +0200 |
commit | 978574b502294ae06eb97d4f590b54ed5d24cd7f (patch) | |
tree | 79d791962c758218ef1011fdcf32058b3050fbaa /lib/vtls/openssl.c | |
parent | 57d299a499155d4b327e341c6024e293b0418243 (diff) | |
download | curl-978574b502294ae06eb97d4f590b54ed5d24cd7f.tar.gz |
openssl: Fix setting TLS 1.3 cipher suites
The flag indicating TLS 1.3 cipher support in the OpenSSL backend was
missing.
Bug: https://github.com/curl/curl/pull/2607#issuecomment-417283187
Reported-by: Kamil Dudka
Closes #2926
Diffstat (limited to 'lib/vtls/openssl.c')
-rw-r--r-- | lib/vtls/openssl.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/vtls/openssl.c b/lib/vtls/openssl.c index 78ee7e4f7..a487f553c 100644 --- a/lib/vtls/openssl.c +++ b/lib/vtls/openssl.c @@ -3807,6 +3807,9 @@ const struct Curl_ssl Curl_ssl_openssl = { SSLSUPP_CERTINFO | SSLSUPP_PINNEDPUBKEY | SSLSUPP_SSL_CTX | +#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES + SSLSUPP_TLS13_CIPHERSUITES | +#endif SSLSUPP_HTTPS_PROXY, sizeof(struct ssl_backend_data), |