From 3b16c6648eaf818d3637e1b1863e768796afd805 Mon Sep 17 00:00:00 2001 From: Benjamin Kaduk Date: Thu, 11 Jan 2018 10:49:33 -0600 Subject: [PATCH] Bump TLS1_3_VERSION_DRAFT for draft-23 Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/5068) --- include/openssl/tls1.h | 6 +++--- util/perl/TLSProxy/Record.pm | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/openssl/tls1.h b/include/openssl/tls1.h index 8fc1b49fb6..854b83336c 100644 --- a/include/openssl/tls1.h +++ b/include/openssl/tls1.h @@ -30,9 +30,9 @@ extern "C" { # define TLS1_3_VERSION 0x0304 # define TLS_MAX_VERSION TLS1_3_VERSION -/* TODO(TLS1.3) REMOVE ME: Version indicator for draft -22 */ -# define TLS1_3_VERSION_DRAFT 0x7f16 -# define TLS1_3_VERSION_DRAFT_TXT "TLS 1.3 (draft 22)" +/* TODO(TLS1.3) REMOVE ME: Version indicator for draft -23 */ +# define TLS1_3_VERSION_DRAFT 0x7f17 +# define TLS1_3_VERSION_DRAFT_TXT "TLS 1.3 (draft 23)" /* Special value for method supporting multiple versions */ # define TLS_ANY_VERSION 0x10000 diff --git a/util/perl/TLSProxy/Record.pm b/util/perl/TLSProxy/Record.pm index 61ac8e2d7b..47daf92d31 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 => 0x7f16, + VERS_TLS_1_3_DRAFT => 0x7f17, VERS_TLS_1_3 => 0x0304, VERS_TLS_1_2 => 0x0303, VERS_TLS_1_1 => 0x0302, -- GitLab