diff options
author | Ingela Andin <[email protected]> | 2017-08-22 17:26:12 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2017-08-22 17:26:12 +0200 |
commit | 00300bf14f2806d6272bfb215efb8fade5e23f7f (patch) | |
tree | 0d561a7a24210a7fcab3ef97af37d888f8a0fccc /lib/ssl/test | |
parent | 4c42d5b93e32444f185043e74c9b408cd76dc661 (diff) | |
parent | 4cc859302a658032017314d9cfbb62f13b9a3efd (diff) | |
download | otp-00300bf14f2806d6272bfb215efb8fade5e23f7f.tar.gz otp-00300bf14f2806d6272bfb215efb8fade5e23f7f.tar.bz2 otp-00300bf14f2806d6272bfb215efb8fade5e23f7f.zip |
Merge pull request #1518 from RoadRunnr/R20/ssl_anon_certs
RFC: ecdhe_psk cipher suites
OTP-14547
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 f627ebce2e..a02d6e7b32 100644 --- a/lib/ssl/test/ssl_test_lib.erl +++ b/lib/ssl/test/ssl_test_lib.erl @@ -1474,10 +1474,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. |