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.web12.6815.1580772953009765693 for ; Mon, 03 Feb 2020 15:35:53 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 192.55.52.136, mailfrom: michael.d.kinney@intel.com) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga106.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 03 Feb 2020 15:35:52 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.70,398,1574150400"; d="scan'208";a="225319034" Received: from mdkinney-mobl2.amr.corp.intel.com ([10.251.29.78]) by fmsmga008.fm.intel.com with ESMTP; 03 Feb 2020 15:35:51 -0800 From: "Michael D Kinney" To: devel@edk2.groups.io Subject: [Patch v10 0/2] CryptoPkg/BaseHashApiLib: Implement Unified Hash Calculation API Date: Mon, 3 Feb 2020 15:35:46 -0800 Message-Id: <20200203233548.7616-1-michael.d.kinney@intel.com> X-Mailer: git-send-email 2.21.0.windows.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit https://bugzilla.tianocore.org/show_bug.cgi?id=2151 Currently, the UEFI drivers using the SHA/SM3 hashing algorithms use hard-coded API to calculate the hash, for instance, sha_256(...), etc. Since SHA384 and/or SM3_256 are being increasingly adopted for robustness, it becomes cumbersome to modify each driver that calls into hash calculating API. To better achieve this, we are proposing a Unified API, which can be used by UEFI drivers, that provides the drivers with flexibility to use the desired hashing algorithm based on the required robnustness. Alternatively, the design document is also attached to Bugzilla, https://bugzilla.tianocore.org/show_bug.cgi?id=2151 Cc: Jiewen Yao jiewen.yao@intel.com Cc: Jian J Wang jian.j.wang@intel.com Cc: Michael D Kinney michael.d.kinney@intel.com Signed-off-by: Amol N Sukerkar amol.n.sukerkar@intel.com Amol N Sukerkar (2): CryptoPkg: Add CryptoPkg Token Space GUID CryptoPkg/BaseHashApiLib: Implement Unified Hash Calculation API CryptoPkg/CryptoPkg.dec | 26 +- CryptoPkg/CryptoPkg.dsc | 4 +- CryptoPkg/CryptoPkg.uni | 18 +- CryptoPkg/Include/Library/HashApiLib.h | 122 +++++++ .../Library/BaseHashApiLib/BaseHashApiLib.c | 330 ++++++++++++++++++ .../Library/BaseHashApiLib/BaseHashApiLib.inf | 44 +++ .../Library/BaseHashApiLib/BaseHashApiLib.uni | 17 + 7 files changed, 558 insertions(+), 3 deletions(-) create mode 100644 CryptoPkg/Include/Library/HashApiLib.h create mode 100644 CryptoPkg/Library/BaseHashApiLib/BaseHashApiLib.c create mode 100644 CryptoPkg/Library/BaseHashApiLib/BaseHashApiLib.inf create mode 100644 CryptoPkg/Library/BaseHashApiLib/BaseHashApiLib.uni -- 2.21.0.windows.1