From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mx.groups.io with SMTP id smtpd.web10.1214.1580346179877036468 for ; Wed, 29 Jan 2020 17:03:00 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 134.134.136.126, mailfrom: amol.n.sukerkar@intel.com) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by orsmga106.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 29 Jan 2020 17:02:59 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.70,380,1574150400"; d="scan'208";a="277669735" Received: from ansukerk-desk.amr.corp.intel.com ([10.34.130.122]) by FMSMGA003.fm.intel.com with ESMTP; 29 Jan 2020 17:02:58 -0800 From: "Sukerkar, Amol N" To: devel@edk2.groups.io Cc: michael.d.kinney@intel.com, jiewen.yao@intel.com, jian.j.wang@intel.com, sachin.agrawal@intel.com, srinivas.musti@intel.com, subash.lakkimsetti@intel.com, john.mathews@intel.com Subject: [PATCH v7 0/2] CryptoPkg/BaseHashApiLib: Implement Unified Hash Calculation API Date: Wed, 29 Jan 2020 18:02:54 -0700 Message-Id: <20200130010256.8256-1-amol.n.sukerkar@intel.com> X-Mailer: git-send-email 2.16.2.windows.1 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. Sukerkar, Amol N (2): CryptoPkg: Add CryptoPkg Token Space GUID CryptoPkg/BaseHashApiLib: Implement Unified Hash Calculation API CryptoPkg/Library/HashApiLib/BaseHashApiLib.c | 333 ++++++++++++++++++++ CryptoPkg/CryptoPkg.dec | 26 +- CryptoPkg/CryptoPkg.dsc | 4 +- CryptoPkg/CryptoPkg.uni | 18 +- CryptoPkg/Include/Library/BaseHashApiLib.h | 122 +++++++ CryptoPkg/Library/HashApiLib/BaseHashApiLib.inf | 44 +++ CryptoPkg/Library/HashApiLib/BaseHashApiLib.uni | 17 + 7 files changed, 561 insertions(+), 3 deletions(-) create mode 100644 CryptoPkg/Library/HashApiLib/BaseHashApiLib.c create mode 100644 CryptoPkg/Include/Library/BaseHashApiLib.h create mode 100644 CryptoPkg/Library/HashApiLib/BaseHashApiLib.inf create mode 100644 CryptoPkg/Library/HashApiLib/BaseHashApiLib.uni -- 2.16.2.windows.1