From: Matt Caswell Date: Tue, 4 Jul 2017 10:02:02 +0000 (+0100) Subject: Update the version number for TLSv1.3 draft 21 X-Git-Tag: OpenSSL_1_1_1-pre1~1087 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=07ff590f8f2d0affcd89afad103274100bb5705b Update the version number for TLSv1.3 draft 21 Reviewed-by: Ben Kaduk (Merged from https://github.com/openssl/openssl/pull/3852) --- diff --git a/include/openssl/tls1.h b/include/openssl/tls1.h index 0878851569..d9290998ed 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 -20 */ -# define TLS1_3_VERSION_DRAFT 0x7f14 -# define TLS1_3_VERSION_DRAFT_TXT "TLS 1.3 (draft 20)" +/* TODO(TLS1.3) REMOVE ME: Version indicator for draft -21 */ +# define TLS1_3_VERSION_DRAFT 0x7f15 +# define TLS1_3_VERSION_DRAFT_TXT "TLS 1.3 (draft 21)" /* Special value for method supporting multiple versions */ # define TLS_ANY_VERSION 0x10000 diff --git a/util/TLSProxy/Record.pm b/util/TLSProxy/Record.pm index 8c6e901558..5017c9094c 100644 --- a/util/TLSProxy/Record.pm +++ b/util/TLSProxy/Record.pm @@ -36,7 +36,7 @@ my %record_type = ( use constant { VERS_TLS_1_4 => 0x0305, - VERS_TLS_1_3_DRAFT => 0x7f14, + VERS_TLS_1_3_DRAFT => 0x7f15, VERS_TLS_1_3 => 0x0304, VERS_TLS_1_2 => 0x0303, VERS_TLS_1_1 => 0x0302,