Skip to content
Snippets Groups Projects
Commit 0d1060f2 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

openssl: sort the ciphers on strength

This makes curl pick better (stronger) ciphers by default. The strongest
available ciphers are fine according to the HTTP/2 spec so an OpenSSL
built curl is no longer rejected by string HTTP/2 servers.

Bug: http://curl.haxx.se/bug/view.cgi?id=1487
parent 6d3260af
No related branches found
No related tags found
No related merge requests found
......@@ -106,7 +106,8 @@ bool Curl_ossl_cert_status_request(void);
#define curlssl_md5sum(a,b,c,d) Curl_ossl_md5sum(a,b,c,d)
#define curlssl_cert_status_request() Curl_ossl_cert_status_request()
#define DEFAULT_CIPHER_SELECTION "ALL!EXPORT!EXPORT40!EXPORT56!aNULL!LOW!RC4"
#define DEFAULT_CIPHER_SELECTION \
"ALL!EXPORT!EXPORT40!EXPORT56!aNULL!LOW!RC4@STRENGTH"
#endif /* USE_OPENSSL */
#endif /* HEADER_CURL_SSLUSE_H */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment