diff options
author | Ingela Anderton Andin <[email protected]> | 2016-06-07 10:17:40 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2016-06-07 10:17:40 +0200 |
commit | 58beb31dc61edb16fb669317097242f9865149ca (patch) | |
tree | 762c43af5cf79a400a014d6178ff6d6f0eef69c6 /lib/ssl/test/ssl_handshake_SUITE.erl | |
parent | ac18b8705c78be8bec5bdc14c412af2ced740916 (diff) | |
parent | 33afe108de9cf24be47b9ebd740a8f5e19daca79 (diff) | |
download | otp-58beb31dc61edb16fb669317097242f9865149ca.tar.gz otp-58beb31dc61edb16fb669317097242f9865149ca.tar.bz2 otp-58beb31dc61edb16fb669317097242f9865149ca.zip |
Merge branch 'ingela/ssl/phase-out-sslv2-hello/OTP-13465'
* ingela/ssl/phase-out-sslv2-hello/OTP-13465:
ssl: Add option to phase out support for sslv2 client hello
Diffstat (limited to 'lib/ssl/test/ssl_handshake_SUITE.erl')
-rw-r--r-- | lib/ssl/test/ssl_handshake_SUITE.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/ssl/test/ssl_handshake_SUITE.erl b/lib/ssl/test/ssl_handshake_SUITE.erl index 26e83413c1..a671e3e307 100644 --- a/lib/ssl/test/ssl_handshake_SUITE.erl +++ b/lib/ssl/test/ssl_handshake_SUITE.erl @@ -99,7 +99,8 @@ decode_hello_handshake(_Config) -> 16#70, 16#64, 16#79, 16#2f, 16#32>>, Version = {3, 0}, - {Records, _Buffer} = tls_handshake:get_tls_handshake(Version, HelloPacket, <<>>), + {Records, _Buffer} = tls_handshake:get_tls_handshake(Version, HelloPacket, <<>>, + #ssl_options{v2_hello_compatible = false}), {Hello, _Data} = hd(Records), #renegotiation_info{renegotiated_connection = <<0>>} |