diff options
author | Ingela Anderton Andin <[email protected]> | 2016-04-28 15:09:08 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2016-04-29 12:17:00 +0200 |
commit | e8c845c56c137c457bf950abe653322c94bbc43a (patch) | |
tree | 9a8c7a99aa1caa698e4450e5502348a03e29fa2a | |
parent | 77e4a18ef12bddeafc3533de76a4096538ad6655 (diff) | |
download | otp-e8c845c56c137c457bf950abe653322c94bbc43a.tar.gz otp-e8c845c56c137c457bf950abe653322c94bbc43a.tar.bz2 otp-e8c845c56c137c457bf950abe653322c94bbc43a.zip |
ssl: Correct guard expression
The guard should check that the TLS version is at least TLS-1.2.
-rw-r--r-- | lib/ssl/src/tls_handshake.erl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/ssl/src/tls_handshake.erl b/lib/ssl/src/tls_handshake.erl index ef718c13df..102dbba198 100644 --- a/lib/ssl/src/tls_handshake.erl +++ b/lib/ssl/src/tls_handshake.erl @@ -278,10 +278,11 @@ handle_server_hello_extensions(Version, SessionId, Random, CipherSuite, {Version, SessionId, ConnectionStates, ProtoExt, Protocol} end. -available_signature_algs(undefined, SupportedHashSigns, _, {Major, Minor}) when (Major < 3) andalso (Minor < 3) -> +available_signature_algs(undefined, SupportedHashSigns, _, {Major, Minor}) when + (Major >= 3) andalso (Minor >= 3) -> SupportedHashSigns; available_signature_algs(#hash_sign_algos{hash_sign_algos = ClientHashSigns}, SupportedHashSigns, - _, {Major, Minor}) when (Major < 3) andalso (Minor < 3) -> + _, {Major, Minor}) when (Major >= 3) andalso (Minor >= 3) -> ordsets:intersection(ClientHashSigns, SupportedHashSigns); available_signature_algs(_, _, _, _) -> undefined. |