]> git.proxmox.com Git - mirror_edk2.git/blame - CryptoPkg/Library/BaseCryptLib/SmmCryptLib.inf
CryptoPkg/BaseCryptLib: Add new API VerifyEKUsInPkcs7Signature
[mirror_edk2.git] / CryptoPkg / Library / BaseCryptLib / SmmCryptLib.inf
CommitLineData
a8c44645 1## @file\r
2# Cryptographic Library Instance for SMM driver.\r
3#\r
dc204d5a
JY
4# Caution: This module requires additional review when modified.\r
5# This library will have external input - signature.\r
2ac68e8b 6# This external input must be validated carefully to avoid security issues such as\r
dda856b3 7# buffer overflow or integer overflow.\r
dc204d5a 8#\r
2ac68e8b 9# Note: MD4 Digest functions, SHA-384 Digest functions, SHA-512 Digest functions,\r
25942a40 10# HMAC-MD5 functions, HMAC-SHA1 functions, TDES/ARC4 functions, RSA external\r
630f67dd 11# functions, PKCS#7 SignedData sign functions, Diffie-Hellman functions, and\r
2ac68e8b 12# authenticode signature verification functions are not supported in this instance.\r
532616bb 13#\r
cc01b26e 14# Copyright (c) 2010 - 2019, Intel Corporation. All rights reserved.<BR>\r
2009f6b4 15# SPDX-License-Identifier: BSD-2-Clause-Patent\r
2ac68e8b 16#\r
a8c44645 17##\r
18\r
19[Defines]\r
20 INF_VERSION = 0x00010005\r
21 BASE_NAME = SmmCryptLib\r
dda856b3 22 MODULE_UNI_FILE = SmmCryptLib.uni\r
a8c44645 23 FILE_GUID = 028080a3-8958-4a62-a1a8-0fa1da162007\r
24 MODULE_TYPE = DXE_SMM_DRIVER\r
25 VERSION_STRING = 1.0\r
b7d320f8 26 PI_SPECIFICATION_VERSION = 0x0001000A\r
2c010aba 27 LIBRARY_CLASS = BaseCryptLib|DXE_SMM_DRIVER SMM_CORE MM_STANDALONE\r
a8c44645 28\r
29#\r
30# The following information is for reference only and not required by the build tools.\r
31#\r
d1984abc 32# VALID_ARCHITECTURES = IA32 X64 ARM AARCH64\r
a8c44645 33#\r
34\r
35[Sources]\r
532616bb 36 Hash/CryptMd4Null.c\r
a8c44645 37 Hash/CryptMd5.c\r
38 Hash/CryptSha1.c\r
39 Hash/CryptSha256.c\r
2ac68e8b 40 Hash/CryptSha512Null.c\r
532616bb 41 Hmac/CryptHmacMd5Null.c\r
42 Hmac/CryptHmacSha1Null.c\r
25942a40 43 Hmac/CryptHmacSha256.c\r
bfba88bc 44 Cipher/CryptAes.c\r
532616bb 45 Cipher/CryptTdesNull.c\r
46 Cipher/CryptArc4Null.c\r
47 Pk/CryptRsaBasic.c\r
48 Pk/CryptRsaExtNull.c\r
7e1bc8cd 49 Pk/CryptPkcs5Pbkdf2.c\r
532616bb 50 Pk/CryptPkcs7SignNull.c\r
cc01b26e
JW
51 Pk/CryptPkcs7VerifyCommon.c\r
52 Pk/CryptPkcs7VerifyBase.c\r
23c3178c 53 Pk/CryptPkcs7VerifyEku.c\r
532616bb 54 Pk/CryptDhNull.c\r
e8b4eb04 55 Pk/CryptX509.c\r
532616bb 56 Pk/CryptAuthenticodeNull.c\r
2ac68e8b 57 Pk/CryptTsNull.c\r
b7d320f8 58 Pem/CryptPem.c\r
a8c44645 59\r
60 SysCall/CrtWrapper.c\r
38fcd027 61 SysCall/ConstantTimeClock.c\r
a8c44645 62 SysCall/BaseMemAllocation.c\r
63\r
64[Sources.Ia32]\r
7ce960e7 65 Rand/CryptRandTsc.c\r
66\r
67[Sources.X64]\r
68 Rand/CryptRandTsc.c\r
69\r
7ce960e7 70[Sources.ARM]\r
71 Rand/CryptRand.c\r
72\r
d1984abc
RC
73[Sources.AARCH64]\r
74 Rand/CryptRand.c\r
75\r
a8c44645 76[Packages]\r
77 MdePkg/MdePkg.dec\r
78 CryptoPkg/CryptoPkg.dec\r
79\r
80[LibraryClasses]\r
81 BaseLib\r
82 IoLib\r
83 BaseMemoryLib\r
84 MemoryAllocationLib\r
85 OpensslLib\r
86 IntrinsicLib\r
7ce960e7 87 PrintLib\r
a8c44645 88\r
89#\r
90# Remove these [BuildOptions] after this library is cleaned up\r
91#\r
92[BuildOptions]\r
ec7ad9e1
QL
93 #\r
94 # suppress the following warnings so we do not break the build with warnings-as-errors:\r
95 # C4090: 'function' : different 'const' qualifiers\r
96 #\r
97 MSFT:*_*_*_CC_FLAGS = /wd4090\r
98\r
7bf3ce9f 99 XCODE:*_*_*_CC_FLAGS = -mmmx -msse\r