Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(via byte_bucket on IRC)
curl -v -I --tls-max 1.0 https://example.com
That the connection would only allow TLS 1.0 and no later TLS version. But this negotiates TLS 1.2 just fine.
However, if I also add --tlsv1.0 to the command line, it behaves as expected and gets a TLS 1.0 connection:
--tlsv1.0
curl -v -I --tls-max 1.0 --tlsv1.0 https://example.com
git master (7.60.0-DEV) using the OpenSSL backend (this is most likely very dependent on the specific TLS backend in use)
All, but I reproduced on Linux.
The text was updated successfully, but these errors were encountered:
openssl: acknowledge --tls-max for default version too
1ff414c
... previously it only used the max setting if a TLS version was also explicitly asked for. Fixes #2571 Reported-by: byte_bucket
c5fe868
No branches or pull requests
(via byte_bucket on IRC)
I did this
I expected the following
That the connection would only allow TLS 1.0 and no later TLS version. But this negotiates TLS 1.2 just fine.
However, if I also add
--tlsv1.0
to the command line, it behaves as expected and gets a TLS 1.0 connection:curl/libcurl version
git master (7.60.0-DEV) using the OpenSSL backend (this is most likely very dependent on the specific TLS backend in use)
operating system
All, but I reproduced on Linux.
The text was updated successfully, but these errors were encountered: