]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - CryptoPkg/Library/BaseCryptLib/RuntimeCryptLib.inf
CryptoPkg/BaseCryptLib.h: Add new API VerifyEKUsInPkcs7Signature
[mirror_edk2.git] / CryptoPkg / Library / BaseCryptLib / RuntimeCryptLib.inf
... / ...
CommitLineData
1## @file\r
2# Cryptographic Library Instance for DXE_RUNTIME_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/SHA256 functions, AES/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) 2009 - 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 = RuntimeCryptLib\r
22 MODULE_UNI_FILE = RuntimeCryptLib.uni\r
23 FILE_GUID = 78189cc0-727d-46a4-84ea-f7dd860de64a\r
24 MODULE_TYPE = DXE_RUNTIME_DRIVER\r
25 VERSION_STRING = 1.0\r
26 LIBRARY_CLASS = BaseCryptLib|DXE_RUNTIME_DRIVER\r
27 CONSTRUCTOR = RuntimeCryptLibConstructor\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 Hash/CryptMd4Null.c\r
37 Hash/CryptMd5.c\r
38 Hash/CryptSha1.c\r
39 Hash/CryptSha256.c\r
40 Hash/CryptSha512Null.c\r
41 Hmac/CryptHmacMd5Null.c\r
42 Hmac/CryptHmacSha1Null.c\r
43 Hmac/CryptHmacSha256Null.c\r
44 Cipher/CryptAesNull.c\r
45 Cipher/CryptTdesNull.c\r
46 Cipher/CryptArc4Null.c\r
47 Pk/CryptRsaBasic.c\r
48 Pk/CryptRsaExtNull.c\r
49 Pk/CryptPkcs5Pbkdf2Null.c\r
50 Pk/CryptPkcs7SignNull.c\r
51 Pk/CryptPkcs7VerifyCommon.c\r
52 Pk/CryptPkcs7VerifyRuntime.c\r
53 Pk/CryptDhNull.c\r
54 Pk/CryptX509.c\r
55 Pk/CryptAuthenticodeNull.c\r
56 Pk/CryptTsNull.c\r
57 Pem/CryptPem.c\r
58\r
59 SysCall/CrtWrapper.c\r
60 SysCall/TimerWrapper.c\r
61 SysCall/RuntimeMemAllocation.c\r
62\r
63[Sources.Ia32]\r
64 Rand/CryptRandTsc.c\r
65\r
66[Sources.X64]\r
67 Rand/CryptRandTsc.c\r
68\r
69[Sources.ARM]\r
70 Rand/CryptRand.c\r
71\r
72[Sources.AARCH64]\r
73 Rand/CryptRand.c\r
74\r
75[Packages]\r
76 MdePkg/MdePkg.dec\r
77 CryptoPkg/CryptoPkg.dec\r
78\r
79[LibraryClasses]\r
80 BaseLib\r
81 BaseMemoryLib\r
82 UefiBootServicesTableLib\r
83 UefiRuntimeServicesTableLib\r
84 DebugLib\r
85 OpensslLib\r
86 IntrinsicLib\r
87 PrintLib\r
88\r
89#\r
90# Remove these [BuildOptions] after this library is cleaned up\r
91#\r
92[BuildOptions]\r
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
99 # -JCryptoPkg/Include : To disable the use of the system includes provided by RVCT\r
100 # --diag_remark=1 : Reduce severity of "#1-D: last line of file ends without a newline"\r
101 RVCT:*_*_ARM_CC_FLAGS = -JCryptoPkg/Include --diag_remark=1\r