[edk2-devel] [PATCH v2 0/1] SecurityPkg/BaseHashLib: Implement Unified Hash Calculation API

Sukerkar, Amol N posted 1 patch 4 years, 3 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/edk2 tags/patchew/20200114154107.655-1-amol.n.sukerkar@intel.com
There is a newer version of this series
SecurityPkg/Library/BaseHashLib/BaseHashLibCommon.c | 252 ++++++++++++++++++++
SecurityPkg/Library/BaseHashLib/BaseHashLibDxe.c    | 122 ++++++++++
SecurityPkg/Library/BaseHashLib/BaseHashLibPei.c    | 125 ++++++++++
SecurityPkg/Include/Library/BaseHashLib.h           |  84 +++++++
SecurityPkg/Library/BaseHashLib/BaseHashLibCommon.h |  71 ++++++
SecurityPkg/Library/BaseHashLib/BaseHashLibDxe.inf  |  47 ++++
SecurityPkg/Library/BaseHashLib/BaseHashLibDxe.uni  |  18 ++
SecurityPkg/Library/BaseHashLib/BaseHashLibPei.inf  |  52 ++++
SecurityPkg/Library/BaseHashLib/BaseHashLibPei.uni  |  17 ++
SecurityPkg/SecurityPkg.dec                         |  23 +-
SecurityPkg/SecurityPkg.dsc                         |  10 +-
SecurityPkg/SecurityPkg.uni                         |  15 +-
12 files changed, 833 insertions(+), 3 deletions(-)
create mode 100644 SecurityPkg/Library/BaseHashLib/BaseHashLibCommon.c
create mode 100644 SecurityPkg/Library/BaseHashLib/BaseHashLibDxe.c
create mode 100644 SecurityPkg/Library/BaseHashLib/BaseHashLibPei.c
create mode 100644 SecurityPkg/Include/Library/BaseHashLib.h
create mode 100644 SecurityPkg/Library/BaseHashLib/BaseHashLibCommon.h
create mode 100644 SecurityPkg/Library/BaseHashLib/BaseHashLibDxe.inf
create mode 100644 SecurityPkg/Library/BaseHashLib/BaseHashLibDxe.uni
create mode 100644 SecurityPkg/Library/BaseHashLib/BaseHashLibPei.inf
create mode 100644 SecurityPkg/Library/BaseHashLib/BaseHashLibPei.uni
[edk2-devel] [PATCH v2 0/1] SecurityPkg/BaseHashLib: Implement Unified Hash Calculation API
Posted by Sukerkar, Amol N 4 years, 3 months ago
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 (1):
  SecurityPkg/BaseHashLib: Implement Unified Hash Calculation API

 SecurityPkg/Library/BaseHashLib/BaseHashLibCommon.c | 252 ++++++++++++++++++++
 SecurityPkg/Library/BaseHashLib/BaseHashLibDxe.c    | 122 ++++++++++
 SecurityPkg/Library/BaseHashLib/BaseHashLibPei.c    | 125 ++++++++++
 SecurityPkg/Include/Library/BaseHashLib.h           |  84 +++++++
 SecurityPkg/Library/BaseHashLib/BaseHashLibCommon.h |  71 ++++++
 SecurityPkg/Library/BaseHashLib/BaseHashLibDxe.inf  |  47 ++++
 SecurityPkg/Library/BaseHashLib/BaseHashLibDxe.uni  |  18 ++
 SecurityPkg/Library/BaseHashLib/BaseHashLibPei.inf  |  52 ++++
 SecurityPkg/Library/BaseHashLib/BaseHashLibPei.uni  |  17 ++
 SecurityPkg/SecurityPkg.dec                         |  23 +-
 SecurityPkg/SecurityPkg.dsc                         |  10 +-
 SecurityPkg/SecurityPkg.uni                         |  15 +-
 12 files changed, 833 insertions(+), 3 deletions(-)
 create mode 100644 SecurityPkg/Library/BaseHashLib/BaseHashLibCommon.c
 create mode 100644 SecurityPkg/Library/BaseHashLib/BaseHashLibDxe.c
 create mode 100644 SecurityPkg/Library/BaseHashLib/BaseHashLibPei.c
 create mode 100644 SecurityPkg/Include/Library/BaseHashLib.h
 create mode 100644 SecurityPkg/Library/BaseHashLib/BaseHashLibCommon.h
 create mode 100644 SecurityPkg/Library/BaseHashLib/BaseHashLibDxe.inf
 create mode 100644 SecurityPkg/Library/BaseHashLib/BaseHashLibDxe.uni
 create mode 100644 SecurityPkg/Library/BaseHashLib/BaseHashLibPei.inf
 create mode 100644 SecurityPkg/Library/BaseHashLib/BaseHashLibPei.uni

-- 
2.16.2.windows.1


-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.

View/Reply Online (#53227): https://edk2.groups.io/g/devel/message/53227
Mute This Topic: https://groups.io/mt/69695417/1787277
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub  [importer@patchew.org]
-=-=-=-=-=-=-=-=-=-=-=-