aboutsummaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2018-08-08 15:29:33 +0100
committerMatt Caswell <matt@openssl.org>2018-08-09 10:53:09 +0100
commit9b287d53db2596a62fc0b94557d521a43f067e81 (patch)
treef1ffe9e68e4abde7d9e031ad9357442d97594ee7 /util
parent5df2206048d812c493d441701d55f75bdde2995d (diff)
downloadopenssl-9b287d53db2596a62fc0b94557d521a43f067e81.zip
openssl-9b287d53db2596a62fc0b94557d521a43f067e81.tar.gz
openssl-9b287d53db2596a62fc0b94557d521a43f067e81.tar.bz2
Add a test for TLSv1.3 fallback
Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/6894)
Diffstat (limited to 'util')
-rw-r--r--util/perl/TLSProxy/Message.pm2
1 files changed, 2 insertions, 0 deletions
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,