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