From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=192.55.52.43; helo=mga05.intel.com; envelope-from=chao.b.zhang@intel.com; receiver=edk2-devel@lists.01.org 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 49142210E38BA for ; Wed, 8 Aug 2018 23:06:19 -0700 (PDT) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 08 Aug 2018 23:06:18 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.53,213,1531810800"; d="scan'208";a="61786768" Received: from czhan46-mobl1.ccr.corp.intel.com ([10.255.31.93]) by fmsmga008.fm.intel.com with ESMTP; 08 Aug 2018 23:06:18 -0700 From: "Zhang, Chao B" To: edk2-devel@lists.01.org Cc: Long Qin Date: Thu, 9 Aug 2018 14:06:12 +0800 Message-Id: <20180809060612.9800-1-chao.b.zhang@intel.com> X-Mailer: git-send-email 2.11.0.windows.1 Subject: [Patch] SecurityPkg: HashLib: Update HashLib file GUID X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Aug 2018 06:06:19 -0000 2 file GUIDs conflict with existing SHA256 Lib. Update them. Cc: Long Qin Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Zhang, Chao B --- SecurityPkg/Library/HashInstanceLibSha384/HashInstanceLibSha384.inf | 2 +- SecurityPkg/Library/HashInstanceLibSha512/HashInstanceLibSha512.inf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/SecurityPkg/Library/HashInstanceLibSha384/HashInstanceLibSha384.inf b/SecurityPkg/Library/HashInstanceLibSha384/HashInstanceLibSha384.inf index 76677794fa..cf12587354 100644 --- a/SecurityPkg/Library/HashInstanceLibSha384/HashInstanceLibSha384.inf +++ b/SecurityPkg/Library/HashInstanceLibSha384/HashInstanceLibSha384.inf @@ -15,11 +15,11 @@ [Defines] INF_VERSION = 0x00010005 BASE_NAME = HashInstanceLibSha384 MODULE_UNI_FILE = HashInstanceLibSha384.uni - FILE_GUID = 5810798A-ED30-4080-8DD7-B9667A748C02 + FILE_GUID = 74223710-17A9-478f-9B24-E354496B968B MODULE_TYPE = BASE VERSION_STRING = 1.0 LIBRARY_CLASS = NULL CONSTRUCTOR = HashInstanceLibSha384Constructor diff --git a/SecurityPkg/Library/HashInstanceLibSha512/HashInstanceLibSha512.inf b/SecurityPkg/Library/HashInstanceLibSha512/HashInstanceLibSha512.inf index 94929a8736..917c23f3d5 100644 --- a/SecurityPkg/Library/HashInstanceLibSha512/HashInstanceLibSha512.inf +++ b/SecurityPkg/Library/HashInstanceLibSha512/HashInstanceLibSha512.inf @@ -15,11 +15,11 @@ [Defines] INF_VERSION = 0x00010005 BASE_NAME = HashInstanceLibSha512 MODULE_UNI_FILE = HashInstanceLibSha512.uni - FILE_GUID = 5810798A-ED30-4080-8DD7-B9667A748C02 + FILE_GUID = 959C3685-AC3F-4f3e-AC5B-7E2A64BADD36 MODULE_TYPE = BASE VERSION_STRING = 1.0 LIBRARY_CLASS = NULL CONSTRUCTOR = HashInstanceLibSha512Constructor -- 2.16.2.windows.1