From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 6483C81C4E for ; Wed, 14 Dec 2016 00:42:55 -0800 (PST) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga101.fm.intel.com with ESMTP; 14 Dec 2016 00:42:55 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,346,1477983600"; d="scan'208";a="1098942100" Received: from fmsmsx107.amr.corp.intel.com ([10.18.124.205]) by fmsmga002.fm.intel.com with ESMTP; 14 Dec 2016 00:42:54 -0800 Received: from fmsmsx120.amr.corp.intel.com (10.18.124.208) by fmsmsx107.amr.corp.intel.com (10.18.124.205) with Microsoft SMTP Server (TLS) id 14.3.248.2; Wed, 14 Dec 2016 00:42:54 -0800 Received: from shsmsx101.ccr.corp.intel.com (10.239.4.153) by fmsmsx120.amr.corp.intel.com (10.18.124.208) with Microsoft SMTP Server (TLS) id 14.3.248.2; Wed, 14 Dec 2016 00:42:54 -0800 Received: from shsmsx103.ccr.corp.intel.com ([169.254.4.11]) by SHSMSX101.ccr.corp.intel.com ([169.254.1.97]) with mapi id 14.03.0248.002; Wed, 14 Dec 2016 16:42:51 +0800 From: "Long, Qin" To: "Wu, Jiaxin" , "edk2-devel@lists.01.org" CC: "Ye, Ting" , "Fu, Siyuan" , "Zhang, Lubo" , "Gao, Liming" , "Kinney, Michael D" , Thomas Palmer Thread-Topic: [Patch 02/10] MdePkg: Add a header to standardize TLS definitions Thread-Index: AQHSVdyCfBs5BI9s60eXJ8NgX6ymj6EHIFNw Date: Wed, 14 Dec 2016 08:42:51 +0000 Message-ID: References: <1481700859-76060-1-git-send-email-jiaxin.wu@intel.com> <1481700859-76060-3-git-send-email-jiaxin.wu@intel.com> In-Reply-To: <1481700859-76060-3-git-send-email-jiaxin.wu@intel.com> Accept-Language: zh-CN, en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] MIME-Version: 1.0 Subject: Re: [Patch 02/10] MdePkg: Add a header to standardize TLS definitions X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Dec 2016 08:42:55 -0000 Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Reviewed-by: Qin Long > -----Original Message----- > From: Wu, Jiaxin > Sent: Wednesday, December 14, 2016 3:34 PM > To: edk2-devel@lists.01.org > Cc: Long, Qin; Ye, Ting; Fu, Siyuan; Zhang, Lubo; Gao, Liming; Kinney, Mi= chael > D; Thomas Palmer; Wu, Jiaxin > Subject: [Patch 02/10] MdePkg: Add a header to standardize TLS definition= s >=20 > This path is used to standardize TLS definitions from related RFCs. Inclu= ding > TLS Cipher Suites, TLS Version, TLS Content Type and TLS Record Header, e= tc. >=20 > Cc: Long Qin > Cc: Ye Ting > Cc: Fu Siyuan > Cc: Zhang Lubo > Cc: Liming Gao > Cc: Michael D Kinney > Cc: Thomas Palmer > Contributed-under: TianoCore Contribution Agreement 1.0 > Signed-off-by: Wu Jiaxin > --- > MdePkg/Include/IndustryStandard/Tls1.h | 93 > ++++++++++++++++++++++++++++++++++ > 1 file changed, 93 insertions(+) > create mode 100644 MdePkg/Include/IndustryStandard/Tls1.h >=20 > diff --git a/MdePkg/Include/IndustryStandard/Tls1.h > b/MdePkg/Include/IndustryStandard/Tls1.h > new file mode 100644 > index 0000000..14eb265 > --- /dev/null > +++ b/MdePkg/Include/IndustryStandard/Tls1.h > @@ -0,0 +1,93 @@ > +/** @file > + Transport Layer Security -- TLS 1.0/1.1/1.2 Standard definitions, fro= m RFC > 2246/4346/5246 > + > + This file contains common TLS 1.0/1.1/1.2 definitions from RFC > + 2246/4346/5246 > + > + Copyright (c) 2016, Intel Corporation. All rights reserved.
This > + program and the accompanying materials are licensed and made > + available under the terms and conditions of the BSD License which > + accompanies this distribution. The full text of the license may be > + found at http://opensource.org/licenses/bsd-license.php > + > + THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" > BASIS, > + WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER > EXPRESS OR IMPLIED. > +**/ > + > +#ifndef __TLS_1_H__ > +#define __TLS_1_H__ > + > +#pragma pack(1) > + > +/// > +/// TLS Cipher Suite, refers to A.5 of rfc-2246, rfc-4346 and rfc-5246. > +/// > +#define TLS_RSA_WITH_NULL_MD5 {0x00, 0x01} > +#define TLS_RSA_WITH_NULL_SHA {0x00, 0x02} > +#define TLS_RSA_WITH_RC4_128_MD5 {0x00, 0x04} > +#define TLS_RSA_WITH_RC4_128_SHA {0x00, 0x05} > +#define TLS_RSA_WITH_IDEA_CBC_SHA {0x00, 0x07} > +#define TLS_RSA_WITH_DES_CBC_SHA {0x00, 0x09} > +#define TLS_RSA_WITH_3DES_EDE_CBC_SHA {0x00, 0x0A} > +#define TLS_DH_DSS_WITH_DES_CBC_SHA {0x00, 0x0C} > +#define TLS_DH_DSS_WITH_3DES_EDE_CBC_SHA {0x00, 0x0D} > +#define TLS_DH_RSA_WITH_DES_CBC_SHA {0x00, 0x0F} > +#define TLS_DH_RSA_WITH_3DES_EDE_CBC_SHA {0x00, 0x10} > +#define TLS_DHE_DSS_WITH_DES_CBC_SHA {0x00, 0x12} > +#define TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA {0x00, 0x13} > +#define TLS_DHE_RSA_WITH_DES_CBC_SHA {0x00, 0x15} > +#define TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA {0x00, 0x16} > +#define TLS_RSA_WITH_AES_128_CBC_SHA {0x00, 0x2F} > +#define TLS_DH_DSS_WITH_AES_128_CBC_SHA {0x00, 0x30} > +#define TLS_DH_RSA_WITH_AES_128_CBC_SHA {0x00, 0x31} > +#define TLS_DHE_DSS_WITH_AES_128_CBC_SHA {0x00, 0x32} > +#define TLS_DHE_RSA_WITH_AES_128_CBC_SHA {0x00, 0x33} > +#define TLS_RSA_WITH_AES_256_CBC_SHA {0x00, 0x35} > +#define TLS_DH_DSS_WITH_AES_256_CBC_SHA {0x00, 0x36} > +#define TLS_DH_RSA_WITH_AES_256_CBC_SHA {0x00, 0x37} > +#define TLS_DHE_DSS_WITH_AES_256_CBC_SHA {0x00, 0x38} > +#define TLS_DHE_RSA_WITH_AES_256_CBC_SHA {0x00, 0x39} > +#define TLS_RSA_WITH_NULL_SHA256 {0x00, 0x3B} > +#define TLS_RSA_WITH_AES_128_CBC_SHA256 {0x00, 0x3C} > +#define TLS_RSA_WITH_AES_256_CBC_SHA256 {0x00, 0x3D} > +#define TLS_DH_DSS_WITH_AES_128_CBC_SHA256 {0x00, 0x3E} > +#define TLS_DH_RSA_WITH_AES_128_CBC_SHA256 {0x00, 0x3F} > +#define TLS_DHE_DSS_WITH_AES_128_CBC_SHA256 {0x00, 0x40} > +#define TLS_DHE_RSA_WITH_AES_128_CBC_SHA256 {0x00, 0x67} > +#define TLS_DH_DSS_WITH_AES_256_CBC_SHA256 {0x00, 0x68} > +#define TLS_DH_RSA_WITH_AES_256_CBC_SHA256 {0x00, 0x69} > +#define TLS_DHE_DSS_WITH_AES_256_CBC_SHA256 {0x00, 0x6A} > +#define TLS_DHE_RSA_WITH_AES_256_CBC_SHA256 {0x00, 0x6B} > + > +/// > +/// TLS Version, refers to A.1 of rfc-2246, rfc-4346 and rfc-5246. > +/// > +#define TLS10_PROTOCOL_VERSION_MAJOR 0x03 #define > +TLS10_PROTOCOL_VERSION_MINOR 0x01 #define > TLS11_PROTOCOL_VERSION_MAJOR > +0x03 #define TLS11_PROTOCOL_VERSION_MINOR 0x02 #define > +TLS12_PROTOCOL_VERSION_MAJOR 0x03 #define > TLS12_PROTOCOL_VERSION_MINOR > +0x03 > + > +/// > +/// TLS Content Type, refers to A.1 of rfc-2246, rfc-4346 and rfc-5246. > +/// > +typedef enum { > + TLS_CONTENT_TYPE_CHANGE_CIPHER_SPEC =3D 20, > + TLS_CONTENT_TYPE_ALERT =3D 21, > + TLS_CONTENT_TYPE_HANDSHAKE =3D 22, > + TLS_CONTENT_TYPE_APPLICATION_DATA =3D 23, > +} TLS_CONTENT_TYPE; > + > +/// > +/// TLS Record Header, refers to A.1 of rfc-2246, rfc-4346 and rfc-5246. > +/// > +typedef struct { > + UINT8 ContentType; > + EFI_TLS_VERSION Version; > + UINT16 Length; > +} TLS_RECORD_HEADER; > + > +#pragma pack() > + > +#endif > + > -- > 1.9.5.msysgit.1