From 9b287d53db2596a62fc0b94557d521a43f067e81 Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Wed, 8 Aug 2018 15:29:33 +0100 Subject: Add a test for TLSv1.3 fallback Reviewed-by: Rich Salz Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/6894) --- util/perl/TLSProxy/Message.pm | 2 ++ 1 file changed, 2 insertions(+) (limited to 'util') diff --git a/util/perl/TLSProxy/Message.pm b/util/perl/TLSProxy/Message.pm index 44952ad..dae6daa 100644 --- a/util/perl/TLSProxy/Message.pm +++ b/util/perl/TLSProxy/Message.pm @@ -41,6 +41,7 @@ use constant { use constant { AL_DESC_CLOSE_NOTIFY => 0, AL_DESC_UNEXPECTED_MESSAGE => 10, + AL_DESC_ILLEGAL_PARAMETER => 47, AL_DESC_NO_RENEGOTIATION => 100 }; @@ -125,6 +126,7 @@ use constant { }; use constant { + CIPHER_RSA_WITH_AES_128_CBC_SHA => 0x002f, CIPHER_DHE_RSA_AES_128_SHA => 0x0033, CIPHER_ADH_AES_128_SHA => 0x0034, CIPHER_TLS13_AES_128_GCM_SHA256 => 0x1301, -- cgit v1.1