diff options
author | Ingela Anderton Andin <[email protected]> | 2019-07-23 11:13:03 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2019-07-24 17:31:24 +0200 |
commit | 095f82ff0b9a7b9d6517ee1e715fc32d38965626 (patch) | |
tree | a9eca51fa7684350b4951b1be84dabe493e87124 /lib | |
parent | e1b53a21573756bbfd469570b1a0352f6ee9e69c (diff) | |
download | otp-095f82ff0b9a7b9d6517ee1e715fc32d38965626.tar.gz otp-095f82ff0b9a7b9d6517ee1e715fc32d38965626.tar.bz2 otp-095f82ff0b9a7b9d6517ee1e715fc32d38965626.zip |
ssl: Old OpenSSL implementation does not ignore trailing client hello data
Do not test TLS 1.0 with these old versions as we do send hello extensions
for those implementations that will use them, and trailing unknown data
should be ignored by RFC complient implementations.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ssl/test/ssl_test_lib.erl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/ssl/test/ssl_test_lib.erl b/lib/ssl/test/ssl_test_lib.erl index 49e7b50b1b..5d0d09b33a 100644 --- a/lib/ssl/test/ssl_test_lib.erl +++ b/lib/ssl/test/ssl_test_lib.erl @@ -2110,6 +2110,8 @@ check_sane_openssl_version(Version) -> false; {'tlsv1.1', "OpenSSL 0" ++ _} -> false; + {'tlsv1', "OpenSSL 0" ++ _} -> + false; {_, _} -> true end; |