]> git.proxmox.com Git - mirror_edk2.git/commit - CryptoPkg/Library/OpensslLib/OpensslLib.inf
CryptoPkg Updates to support RFC3161 timestamp signature verification.
authorQin Long <qin.long@intel.com>
Wed, 12 Nov 2014 08:51:45 +0000 (08:51 +0000)
committerqlong <qlong@Edk2>
Wed, 12 Nov 2014 08:51:45 +0000 (08:51 +0000)
commit2ac68e8b549b646607149919a2780bcd7234d92d
treed85381db3a67e628adb94b18f046c6db230eaabb
parentbcbdc75535d376d710cd864fb3cf5129c7dfcaff
CryptoPkg Updates to support RFC3161 timestamp signature verification.

The main changes includes:
1. Enabling SHA384 and SHA512 digest algorithm; (Sha512.c)
2. RFC 3161 timestamp signature verification support; (CryptTs.c)
3. Fixed one ASN.1 length encoding issue in Authenticode verification routine. (CryptAuthenticode.c)
4. Add the corresponding test cases in Cryptest utility (SHA384 & SHA512 & Timestamp verification)

Contributed-under: TianoCore Contribution Agreement 1.0

Signed-off-by: Qin Long <qin.long@intel.com>
Reviewed-by: Guo Dong <guo.dong@intel.com>
Reviewed-by: Ting Ye <ting.ye@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16339 6f19259b-4bc3-4df7-8a09-765794883524
33 files changed:
CryptoPkg/Application/Cryptest/Cryptest.c
CryptoPkg/Application/Cryptest/Cryptest.h
CryptoPkg/Application/Cryptest/Cryptest.inf
CryptoPkg/Application/Cryptest/DhVerify.c
CryptoPkg/Application/Cryptest/HashVerify.c
CryptoPkg/Application/Cryptest/TSVerify.c [new file with mode: 0644]
CryptoPkg/Include/Library/BaseCryptLib.h
CryptoPkg/Library/BaseCryptLib/BaseCryptLib.inf
CryptoPkg/Library/BaseCryptLib/Hash/CryptSha512.c [new file with mode: 0644]
CryptoPkg/Library/BaseCryptLib/Hash/CryptSha512Null.c [new file with mode: 0644]
CryptoPkg/Library/BaseCryptLib/PeiCryptLib.inf
CryptoPkg/Library/BaseCryptLib/Pk/CryptAuthenticode.c
CryptoPkg/Library/BaseCryptLib/Pk/CryptPkcs7Verify.c
CryptoPkg/Library/BaseCryptLib/Pk/CryptTs.c [new file with mode: 0644]
CryptoPkg/Library/BaseCryptLib/Pk/CryptTsNull.c [new file with mode: 0644]
CryptoPkg/Library/BaseCryptLib/RuntimeCryptLib.inf
CryptoPkg/Library/BaseCryptLib/SmmCryptLib.inf
CryptoPkg/Library/BaseCryptLib/SysCall/Ia32/MathDivU64x64.S [deleted file]
CryptoPkg/Library/BaseCryptLib/SysCall/Ia32/MathDivU64x64.c [deleted file]
CryptoPkg/Library/BaseCryptLib/SysCall/Ia32/MathLShiftS64.S [deleted file]
CryptoPkg/Library/BaseCryptLib/SysCall/Ia32/MathLShiftS64.c [deleted file]
CryptoPkg/Library/BaseCryptLib/SysCall/Ia32/MathMultS64x64.S [deleted file]
CryptoPkg/Library/BaseCryptLib/SysCall/Ia32/MathMultS64x64.c [deleted file]
CryptoPkg/Library/BaseCryptLib/SysCall/Ia32/MathRShiftU64.S [deleted file]
CryptoPkg/Library/BaseCryptLib/SysCall/Ia32/MathRShiftU64.c [deleted file]
CryptoPkg/Library/BaseCryptLib/SysCall/Ia32/MathReminderU64x64.S [deleted file]
CryptoPkg/Library/BaseCryptLib/SysCall/Ia32/MathReminderU64x64.c [deleted file]
CryptoPkg/Library/IntrinsicLib/Ia32/MathLShiftS64.S [new file with mode: 0644]
CryptoPkg/Library/IntrinsicLib/Ia32/MathLShiftS64.c [new file with mode: 0644]
CryptoPkg/Library/IntrinsicLib/Ia32/MathRShiftU64.S [new file with mode: 0644]
CryptoPkg/Library/IntrinsicLib/Ia32/MathRShiftU64.c [new file with mode: 0644]
CryptoPkg/Library/IntrinsicLib/IntrinsicLib.inf
CryptoPkg/Library/OpensslLib/OpensslLib.inf