aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssl/src/ssl_cipher.erl
diff options
context:
space:
mode:
authorPéter Dimitrov <[email protected]>2018-11-27 16:44:11 +0100
committerPéter Dimitrov <[email protected]>2019-01-11 09:59:12 +0100
commit1ed5fdcb034b4930f1a7243313d40f80fd281287 (patch)
tree4d813884460a23d698f995867184f2cc6eb3be44 /lib/ssl/src/ssl_cipher.erl
parent64332e9bc1f05a23c442e14e920082f8b444ef80 (diff)
downloadotp-1ed5fdcb034b4930f1a7243313d40f80fd281287.tar.gz
otp-1ed5fdcb034b4930f1a7243313d40f80fd281287.tar.bz2
otp-1ed5fdcb034b4930f1a7243313d40f80fd281287.zip
ssl: Fix cipher suite selection
Accept only TLS 1.3 ciphers when TLS 1.3 is selected. Change-Id: I4e934d344f52208263ffdeb31c357dd5727472b9
Diffstat (limited to 'lib/ssl/src/ssl_cipher.erl')
-rw-r--r--lib/ssl/src/ssl_cipher.erl3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/ssl/src/ssl_cipher.erl b/lib/ssl/src/ssl_cipher.erl
index 1b6072dbcc..32a60fe5aa 100644
--- a/lib/ssl/src/ssl_cipher.erl
+++ b/lib/ssl/src/ssl_cipher.erl
@@ -578,7 +578,8 @@ crypto_support_filters() ->
end]}.
is_acceptable_keyexchange(KeyExchange, _Algos) when KeyExchange == psk;
- KeyExchange == null ->
+ KeyExchange == null;
+ KeyExchange == any ->
true;
is_acceptable_keyexchange(KeyExchange, Algos) when KeyExchange == dh_anon;
KeyExchange == dhe_psk ->