From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) (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 48D6E82094 for ; Sun, 18 Dec 2016 23:32:43 -0800 (PST) Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by fmsmga105.fm.intel.com with ESMTP; 18 Dec 2016 23:32:43 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,372,1477983600"; d="scan'208";a="44362080" Received: from fmsmsx103.amr.corp.intel.com ([10.18.124.201]) by fmsmga005.fm.intel.com with ESMTP; 18 Dec 2016 23:32:43 -0800 Received: from shsmsx151.ccr.corp.intel.com (10.239.6.50) by FMSMSX103.amr.corp.intel.com (10.18.124.201) with Microsoft SMTP Server (TLS) id 14.3.248.2; Sun, 18 Dec 2016 23:32:42 -0800 Received: from shsmsx102.ccr.corp.intel.com ([169.254.2.54]) by SHSMSX151.ccr.corp.intel.com ([169.254.3.77]) with mapi id 14.03.0248.002; Mon, 19 Dec 2016 15:32:39 +0800 From: "Yao, Jiewen" To: "Bi, Dandan" , "edk2-devel@lists.01.org" Thread-Topic: [patch 1/8] SecurityPkg/FmpAuthenticationLib: Fix Guid format issues Thread-Index: AQHSWchz108dG8QOsEmHckjKjG9DwaEO4InA Date: Mon, 19 Dec 2016 07:32:38 +0000 Message-ID: <74D8A39837DF1E4DA445A8C0B3885C503A8C63BA@shsmsx102.ccr.corp.intel.com> References: <1482132023-10416-1-git-send-email-dandan.bi@intel.com> <1482132023-10416-2-git-send-email-dandan.bi@intel.com> In-Reply-To: <1482132023-10416-2-git-send-email-dandan.bi@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 1/8] SecurityPkg/FmpAuthenticationLib: Fix Guid format issues 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: Mon, 19 Dec 2016 07:32:43 -0000 Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Reviewed-by: jiewen.yao@intel.com > -----Original Message----- > From: Bi, Dandan > Sent: Monday, December 19, 2016 3:20 PM > To: edk2-devel@lists.01.org > Cc: Yao, Jiewen > Subject: [patch 1/8] SecurityPkg/FmpAuthenticationLib: Fix Guid format is= sues >=20 > Cc: Jiewen Yao > Contributed-under: TianoCore Contribution Agreement 1.0 > Signed-off-by: Dandan Bi > --- > .../Library/FmpAuthenticationLibPkcs7/FmpAuthenticationLibPkcs7.inf | = 2 +- > .../FmpAuthenticationLibRsa2048Sha256.inf | = 4 > ++-- > 2 files changed, 3 insertions(+), 3 deletions(-) >=20 > diff --git > a/SecurityPkg/Library/FmpAuthenticationLibPkcs7/FmpAuthenticationLibPkcs7= .i > nf > b/SecurityPkg/Library/FmpAuthenticationLibPkcs7/FmpAuthenticationLibPkcs7= .i > nf > index bce958d..215b3cb 100644 > --- > a/SecurityPkg/Library/FmpAuthenticationLibPkcs7/FmpAuthenticationLibPkcs7= .i > nf > +++ > b/SecurityPkg/Library/FmpAuthenticationLibPkcs7/FmpAuthenticationLibPkcs7= .i > nf > @@ -44,6 +44,6 @@ [LibraryClasses] > DebugLib > MemoryAllocationLib > BaseCryptLib >=20 > [Guids] > - gEfiCertPkcs7Guid ## CONSUMES > + gEfiCertPkcs7Guid ## CONSUMES ## GUID > diff --git > a/SecurityPkg/Library/FmpAuthenticationLibRsa2048Sha256/FmpAuthentication= L > ibRsa2048Sha256.inf > b/SecurityPkg/Library/FmpAuthenticationLibRsa2048Sha256/FmpAuthentication > LibRsa2048Sha256.inf > index b58966d..633f407 100644 > --- > a/SecurityPkg/Library/FmpAuthenticationLibRsa2048Sha256/FmpAuthentication= L > ibRsa2048Sha256.inf > +++ > b/SecurityPkg/Library/FmpAuthenticationLibRsa2048Sha256/FmpAuthentication > LibRsa2048Sha256.inf > @@ -47,7 +47,7 @@ [LibraryClasses] >=20 > [Pcd] > gEfiSecurityPkgTokenSpaceGuid.PcdRsa2048Sha256PublicKeyBuffer ## > CONSUMES >=20 > [Guids] > - gEfiCertTypeRsa2048Sha256Guid ## CONSUMES > - gEfiHashAlgorithmSha256Guid ## CONSUMES > + gEfiCertTypeRsa2048Sha256Guid ## CONSUMES ## GUID > + gEfiHashAlgorithmSha256Guid ## CONSUMES ## GUID > -- > 1.9.5.msysgit.1