aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssl/src/ssl_connection.erl
diff options
context:
space:
mode:
authorIngela Anderton Andin <[email protected]>2017-04-25 16:57:42 +0200
committerIngela Anderton Andin <[email protected]>2017-04-25 16:57:42 +0200
commit504bb40f3530d5890849f1c51f7ce1aba6766784 (patch)
tree0b5a9df92c015d62e7153d865738751a3e8a207a /lib/ssl/src/ssl_connection.erl
parent61a20e55ccf6ff89a4863c1ed8754b8909646e88 (diff)
parentedab501fe7bffe3f19871157ebd1851e6dad1bc5 (diff)
downloadotp-504bb40f3530d5890849f1c51f7ce1aba6766784.tar.gz
otp-504bb40f3530d5890849f1c51f7ce1aba6766784.tar.bz2
otp-504bb40f3530d5890849f1c51f7ce1aba6766784.zip
Merge branch 'ingela/available_hash_signature_algs/OTP-13820'
* ingela/available_hash_signature_algs/OTP-13820: ssl: TLS-1.2 clients will now always send hello messages on its own format.
Diffstat (limited to 'lib/ssl/src/ssl_connection.erl')
-rw-r--r--lib/ssl/src/ssl_connection.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssl/src/ssl_connection.erl b/lib/ssl/src/ssl_connection.erl
index df9b9e8a63..cc77aa6bf4 100644
--- a/lib/ssl/src/ssl_connection.erl
+++ b/lib/ssl/src/ssl_connection.erl
@@ -1689,7 +1689,7 @@ request_client_cert(#state{ssl_options = #ssl_options{verify = verify_peer,
ssl_record:pending_connection_state(ConnectionStates0, read),
TLSVersion = ssl:tls_version(Version),
HashSigns = ssl_handshake:available_signature_algs(SupportedHashSigns,
- TLSVersion, [TLSVersion]),
+ TLSVersion),
Msg = ssl_handshake:certificate_request(CipherSuite, CertDbHandle, CertDbRef,
HashSigns, TLSVersion),
State = Connection:queue_handshake(Msg, State0),