From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mx.groups.io with SMTP id smtpd.web10.14911.1679043720870874677 for ; Fri, 17 Mar 2023 02:02:05 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=Jwa7pf24; spf=pass (domain: intel.com, ip: 192.55.52.136, mailfrom: wenxing.hou@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1679043725; x=1710579725; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=6Vb0BqDa/XVwIAzw8YbYssaDH2TssYDqoUYyMn7m9YA=; b=Jwa7pf24ij938GMvMLG31b0zyeF4HkiSyKLqonH3LcglKXeDov2newFT B3hNt+k4CKK1R9gJfmlBdAxD6XFQmnJLZwxpBqb+ZLpy1Nq40CaYF1AUd V2e3hP7AkSX2PV+QWSJcH85pPj5P6cjb2zsLhNZrS3DTxkqictDZFYCAW 4MXJ2j5dLYUQz7IBL+w5OR9fx/FcTmHP3uVC1P2iFRLRreuucQWICY78E mkBMG1BISIVPHH4wP4CevNtt8Sp9kESZHYEazBHdcJlg9qrt+vS8Cj36H 9Ek/tXtQ3ohBVGRXpjD3hGC5cAnV8bZ+hEe6SBQ9qu5THdu4AbknLefxy A==; X-IronPort-AV: E=McAfee;i="6600,9927,10651"; a="317871139" X-IronPort-AV: E=Sophos;i="5.98,268,1673942400"; d="scan'208";a="317871139" Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Mar 2023 02:02:05 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10651"; a="926066840" X-IronPort-AV: E=Sophos;i="5.98,268,1673942400"; d="scan'208";a="926066840" Received: from shwdejointd777.ccr.corp.intel.com ([10.239.157.39]) by fmsmga006.fm.intel.com with ESMTP; 17 Mar 2023 02:02:04 -0700 From: "Wenxing Hou" To: devel@edk2.groups.io Cc: Wenxing Hou Subject: [edk2-staging/OpenSSL11_EOL PATCH 3/7] Make all BaseCryptLibMbedTls inf files consistent with BaseCryptLib Date: Fri, 17 Mar 2023 17:00:49 +0800 Message-Id: <20230317090053.1895-4-wenxing.hou@intel.com> X-Mailer: git-send-email 2.26.2.windows.1 In-Reply-To: <20230317090053.1895-1-wenxing.hou@intel.com> References: <20230317090053.1895-1-wenxing.hou@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Signed-off-by: Wenxing Hou --- CryptoPkg/Library/BaseCryptLibMbedTls/BaseCryptLib.inf | 8 ++++++++ CryptoPkg/Library/BaseCryptLibMbedTls/RuntimeCryptLib.inf | 2 +- CryptoPkg/Library/BaseCryptLibMbedTls/SmmCryptLib.inf | 4 ++-- .../Library/BaseCryptLibMbedTls/TestBaseCryptLib.inf | 4 +++- 4 files changed, 14 insertions(+), 4 deletions(-) diff --git a/CryptoPkg/Library/BaseCryptLibMbedTls/BaseCryptLib.inf b/Crypt= oPkg/Library/BaseCryptLibMbedTls/BaseCryptLib.inf index 582b6a074f..98b4f5ae2e 100644 --- a/CryptoPkg/Library/BaseCryptLibMbedTls/BaseCryptLib.inf +++ b/CryptoPkg/Library/BaseCryptLibMbedTls/BaseCryptLib.inf @@ -32,6 +32,7 @@ Cipher/CryptAes.c=0D Hash/CryptSha256.c=0D Hash/CryptSha512.c=0D + Hash/CryptParallelHashNull.c=0D Hash/CryptSha3.c=0D Hash/CryptSm3.c=0D Hash/CryptMd5.c=0D @@ -46,7 +47,14 @@ Pk/CryptRsaExt.c=0D Pk/CryptPkcs1Oaep.c=0D Pk/CryptPkcs5Pbkdf2.c=0D + Pk/CryptPkcs7Sign.c=0D + Pk/CryptPkcs7VerifyCommon.c=0D + Pk/CryptPkcs7VerifyBase.c=0D + Pk/CryptPkcs7VerifyEku.c=0D + Pk/CryptDh.c=0D Pk/CryptX509.c=0D + Pk/CryptAuthenticode.c=0D + Pk/CryptTs.c=0D Rand/CryptRand.c=0D SysCall/BaseMemAllocation.c=0D SysCall/CrtWrapper.c=0D diff --git a/CryptoPkg/Library/BaseCryptLibMbedTls/RuntimeCryptLib.inf b/Cr= yptoPkg/Library/BaseCryptLibMbedTls/RuntimeCryptLib.inf index d7c7100ff3..83862cf6bd 100644 --- a/CryptoPkg/Library/BaseCryptLibMbedTls/RuntimeCryptLib.inf +++ b/CryptoPkg/Library/BaseCryptLibMbedTls/RuntimeCryptLib.inf @@ -42,7 +42,7 @@ Hash/CryptSm3.c=0D Hash/CryptSha512.c=0D Hash/CryptParallelHashNull.c=0D - # Hmac/CryptHmac.c=0D + Hmac/CryptHmac.c=0D Kdf/CryptHkdf.c=0D Cipher/CryptAes.c=0D Cipher/CryptAeadAesGcmNull.c=0D diff --git a/CryptoPkg/Library/BaseCryptLibMbedTls/SmmCryptLib.inf b/Crypto= Pkg/Library/BaseCryptLibMbedTls/SmmCryptLib.inf index 92e89ad0a7..68824f4a2b 100644 --- a/CryptoPkg/Library/BaseCryptLibMbedTls/SmmCryptLib.inf +++ b/CryptoPkg/Library/BaseCryptLibMbedTls/SmmCryptLib.inf @@ -41,9 +41,9 @@ Hash/CryptSha3.c=0D Hash/CryptXkcp.c=0D # Hash/CryptCShake256.c=0D - # Hash/CryptParallelHash.c=0D + Hash/CryptParallelHashNull.c=0D # Hash/CryptDispatchApMm.c=0D - # Hmac/CryptHmac.c=0D + Hmac/CryptHmac.c=0D Kdf/CryptHkdf.c=0D Cipher/CryptAes.c=0D Cipher/CryptAeadAesGcmNull.c=0D diff --git a/CryptoPkg/Library/BaseCryptLibMbedTls/TestBaseCryptLib.inf b/C= ryptoPkg/Library/BaseCryptLibMbedTls/TestBaseCryptLib.inf index fd71eb5e18..cf86e0ef68 100644 --- a/CryptoPkg/Library/BaseCryptLibMbedTls/TestBaseCryptLib.inf +++ b/CryptoPkg/Library/BaseCryptLibMbedTls/TestBaseCryptLib.inf @@ -46,11 +46,13 @@ Pk/CryptRsaExt.c=0D Pk/CryptPkcs1Oaep.c=0D Pk/CryptPkcs5Pbkdf2.c=0D + Pk/CryptPkcs7VerifyBase.c=0D + Pk/CryptPkcs7Sign.c=0D + Pk/CryptPkcs7VerifyCommon.c=0D Pk/CryptX509.c=0D Rand/CryptRand.c=0D SysCall/BaseMemAllocation.c=0D SysCall/CrtWrapper.c=0D - SysCall/TimerWrapper.c=0D =0D [Packages]=0D MdePkg/MdePkg.dec=0D --=20 2.26.2.windows.1