gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnurl] 144/153: openssl: Fix setting TLS 1.3 cipher suites


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 144/153: openssl: Fix setting TLS 1.3 cipher suites
Date: Tue, 11 Sep 2018 12:53:35 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to branch master
in repository gnurl.

commit 978574b502294ae06eb97d4f590b54ed5d24cd7f
Author: Jay Satiro <address@hidden>
AuthorDate: Fri Aug 31 19:46:29 2018 -0400

    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
---
 lib/vtls/openssl.c | 3 +++
 1 file changed, 3 insertions(+)

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),

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]