diff options
author | Andreas Schultz <[email protected]> | 2013-05-14 18:39:23 +0200 |
---|---|---|
committer | Andreas Schultz <[email protected]> | 2017-07-21 17:34:34 +0200 |
commit | 7c79233caa18a93952c2caa6ffc2ebca51707a41 (patch) | |
tree | 398400d865e0209bf171b7316f9d912b300f5da5 /lib/ssl/test | |
parent | 9214be49bc81a4f9ce9def091f60df8670547a88 (diff) | |
download | otp-7c79233caa18a93952c2caa6ffc2ebca51707a41.tar.gz otp-7c79233caa18a93952c2caa6ffc2ebca51707a41.tar.bz2 otp-7c79233caa18a93952c2caa6ffc2ebca51707a41.zip |
ssl: add ECDHE_PSK cipher suites
Diffstat (limited to 'lib/ssl/test')
-rw-r--r-- | lib/ssl/test/ssl_test_lib.erl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/ssl/test/ssl_test_lib.erl b/lib/ssl/test/ssl_test_lib.erl index 3b9073ac0b..518c5f028f 100644 --- a/lib/ssl/test/ssl_test_lib.erl +++ b/lib/ssl/test/ssl_test_lib.erl @@ -1517,10 +1517,14 @@ is_psk_anon_suite({psk, _,_}) -> true; is_psk_anon_suite({dhe_psk,_,_}) -> true; +is_psk_anon_suite({ecdhe_psk,_,_}) -> + true; is_psk_anon_suite({psk, _,_,_}) -> true; is_psk_anon_suite({dhe_psk, _,_,_}) -> true; +is_psk_anon_suite({ecdhe_psk, _,_,_}) -> + true; is_psk_anon_suite(_) -> false. |