Re: [edk2-devel] [edk2-platforms][PATCH v5 4/6] Platform/Sgi: Add support for RD-N2-Cfg3 platform

2024-03-30 Thread Sami Mujawar
On Fri, Mar 1, 2024 at 08:30 AM, Prabin CA wrote: > > - Ssdt.asl > + SsdtRos.asl > SsdtEvents.asl > SsdtIoVirtSocExp.asl > - SsdtRos.asl These should be alphabetically sorted. I will fix this in this instance before merging. With that, Reviewed-by: Sami Mujawar Regards, Sami Mujawar -=-=-

[edk2-devel] [PATCH v2 3/3] CryptoPkg/BaseCryptLibUnitTest: add unit test functions

2024-03-30 Thread Chris Ruffin via groups.io
From: Chris Ruffin Add unit test functions: TestVerifyPkcs1v2EncryptInterface() TestVerifyRsaOaepEncryptInterface() TestVerifyEncrypt() TestVerifyDecrypt() TestVerifyEncryptDecrypt() Signed-off-by: Chris Ruffin Cc: Chris Ruffin Cc: Jiewen Yao Cc: Yi Li Cc: Wenxing Hou --- .../Library/BaseC

[edk2-devel] [PATCH v2 2/3] CryptoPkg/Driver: add additional RSAES-OAEP crypto functions

2024-03-30 Thread Chris Ruffin via groups.io
From: Chris Ruffin Add new functions to CryptoPkg/Driver. Signed-off-by: Chris Ruffin Cc: Chris Ruffin Cc: Jiewen Yao Cc: Yi Li Cc: Wenxing Hou --- CryptoPkg/Driver/Crypto.c | 130 +- .../Pcd/PcdCryptoServiceFamilyEnable.h| 4 + .../BaseCryptLi

[edk2-devel] [PATCH v2 1/3] CryptoPkg/BaseCryptLib: add additional RSAES-OAEP crypto functions

2024-03-30 Thread Chris Ruffin via groups.io
From: Chris Ruffin Expand the availability of the RSAES-OAEP crypto capability in BaseCryptLib. Applications using RSA crypto functions directly from OpensslLib can transition to BaseCryptLib to take advantage of the shared crypto feature in CryptoDxe. Pkcs1v2Decrypt(): decryption using DER-enc

[edk2-devel] [PATCH v2 0/3] CryptoPkg/BaseCryptLib: add additional RSAES-OAEP crypto functions

2024-03-30 Thread Chris Ruffin via groups.io
From: Chris Ruffin v2 patchset adds: - Add digest length parameter to RsaOaepEncrypt(), RsaOaepDecrypt() so that SHA256, SHA384, SHA512 message digests and mask generation functions can be used with the API. - Add NullLib implementation for BaseCryptLibMbedTls - Cleanups from v1 review - Signific