summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2018-05-14 18:35:30 +0100
committerMatt Caswell <matt@openssl.org>2018-05-15 10:02:59 +0100
commit73cc84a132a08a02253ae168600fc4d16cd400d8 (patch)
tree79fd5e2f7a8c691f1dae14ad9110f5fd98c3f06f /util
parentba8b48e98dd86851ca20733f819da5b76859e64a (diff)
Suport TLSv1.3 draft 28
Also retains support for drafts 27 and 26 Fixes #6257 Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/6258)
Diffstat (limited to 'util')
-rw-r--r--util/perl/TLSProxy/Record.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/perl/TLSProxy/Record.pm b/util/perl/TLSProxy/Record.pm
index 8ff948b82f..9de51b371a 100644
--- a/util/perl/TLSProxy/Record.pm
+++ b/util/perl/TLSProxy/Record.pm
@@ -36,7 +36,7 @@ my %record_type = (
use constant {
VERS_TLS_1_4 => 0x0305,
- VERS_TLS_1_3_DRAFT => 0x7f1a,
+ VERS_TLS_1_3_DRAFT => 0x7f1c,
VERS_TLS_1_3 => 0x0304,
VERS_TLS_1_2 => 0x0303,
VERS_TLS_1_1 => 0x0302,