aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssl/test/ssl_test_lib.erl
diff options
context:
space:
mode:
authorAndreas Schultz <[email protected]>2013-05-14 18:39:23 +0200
committerAndreas Schultz <[email protected]>2017-07-21 17:34:34 +0200
commit7c79233caa18a93952c2caa6ffc2ebca51707a41 (patch)
tree398400d865e0209bf171b7316f9d912b300f5da5 /lib/ssl/test/ssl_test_lib.erl
parent9214be49bc81a4f9ce9def091f60df8670547a88 (diff)
downloadotp-7c79233caa18a93952c2caa6ffc2ebca51707a41.tar.gz
otp-7c79233caa18a93952c2caa6ffc2ebca51707a41.tar.bz2
otp-7c79233caa18a93952c2caa6ffc2ebca51707a41.zip
ssl: add ECDHE_PSK cipher suites
Diffstat (limited to 'lib/ssl/test/ssl_test_lib.erl')
-rw-r--r--lib/ssl/test/ssl_test_lib.erl4
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.