]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - CryptoPkg/Library/BaseCryptLib/RuntimeCryptLib.inf
CryptoPkg: Declare PcdEcEnabled in Library consuming OpensslLib
[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: SHA-384 Digest functions, SHA-512 Digest functions,\r
10# HMAC-SHA256 functions, AES 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 - 2022, Intel Corporation. All rights reserved.<BR>\r
15# Copyright (c) 2021, Hewlett Packard Enterprise Development LP. All rights reserved.<BR>\r
16# SPDX-License-Identifier: BSD-2-Clause-Patent\r
17#\r
18##\r
19\r
20[Defines]\r
21 INF_VERSION = 0x00010005\r
22 BASE_NAME = RuntimeCryptLib\r
23 MODULE_UNI_FILE = RuntimeCryptLib.uni\r
24 FILE_GUID = 78189cc0-727d-46a4-84ea-f7dd860de64a\r
25 MODULE_TYPE = DXE_RUNTIME_DRIVER\r
26 VERSION_STRING = 1.0\r
27 LIBRARY_CLASS = BaseCryptLib|DXE_RUNTIME_DRIVER\r
28 CONSTRUCTOR = RuntimeCryptLibConstructor\r
29\r
30#\r
31# The following information is for reference only and not required by the build tools.\r
32#\r
33# VALID_ARCHITECTURES = IA32 X64 ARM AARCH64\r
34#\r
35\r
36[Sources]\r
37 InternalCryptLib.h\r
38 Hash/CryptMd5.c\r
39 Hash/CryptSha1.c\r
40 Hash/CryptSha256.c\r
41 Hash/CryptSm3.c\r
42 Hash/CryptSha512.c\r
43 Hash/CryptParallelHashNull.c\r
44 Hmac/CryptHmacSha256.c\r
45 Kdf/CryptHkdf.c\r
46 Cipher/CryptAes.c\r
47 Pk/CryptRsaBasic.c\r
48 Pk/CryptRsaExtNull.c\r
49 Pk/CryptPkcs1OaepNull.c\r
50 Pk/CryptPkcs5Pbkdf2Null.c\r
51 Pk/CryptPkcs7SignNull.c\r
52 Pk/CryptPkcs7VerifyCommon.c\r
53 Pk/CryptPkcs7VerifyRuntime.c\r
54 Pk/CryptPkcs7VerifyEkuRuntime.c\r
55 Pk/CryptDhNull.c\r
56 Pk/CryptX509.c\r
57 Pk/CryptAuthenticodeNull.c\r
58 Pk/CryptTsNull.c\r
59 Pk/CryptRsaPssNull.c\r
60 Pk/CryptRsaPssSignNull.c\r
61 Pem/CryptPem.c\r
62\r
63 SysCall/CrtWrapper.c\r
64 SysCall/TimerWrapper.c\r
65 SysCall/RuntimeMemAllocation.c\r
66\r
67[Sources.Ia32]\r
68 Rand/CryptRandTsc.c\r
69\r
70[Sources.X64]\r
71 Rand/CryptRandTsc.c\r
72\r
73[Sources.ARM]\r
74 Rand/CryptRand.c\r
75\r
76[Sources.AARCH64]\r
77 Rand/CryptRand.c\r
78\r
79[Sources.RISCV64]\r
80 Rand/CryptRand.c\r
81\r
82[Packages]\r
83 MdePkg/MdePkg.dec\r
84 CryptoPkg/CryptoPkg.dec\r
85\r
86[LibraryClasses]\r
87 BaseLib\r
88 BaseMemoryLib\r
89 UefiBootServicesTableLib\r
90 UefiRuntimeServicesTableLib\r
91 DebugLib\r
92 OpensslLib\r
93 IntrinsicLib\r
94 PrintLib\r
95\r
96[FixedPcd]\r
97 gEfiCryptoPkgTokenSpaceGuid.PcdEcEnabled\r
98\r
99#\r
100# Remove these [BuildOptions] after this library is cleaned up\r
101#\r
102[BuildOptions]\r
103 #\r
104 # suppress the following warnings so we do not break the build with warnings-as-errors:\r
105 # C4090: 'function' : different 'const' qualifiers\r
106 #\r
107 MSFT:*_*_*_CC_FLAGS = /wd4090\r
108\r
109 # -JCryptoPkg/Include : To disable the use of the system includes provided by RVCT\r
110 # --diag_remark=1 : Reduce severity of "#1-D: last line of file ends without a newline"\r
111 RVCT:*_*_ARM_CC_FLAGS = -JCryptoPkg/Include --diag_remark=1\r
112\r
113 GCC:*_CLANG35_*_CC_FLAGS = -std=c99\r
114 GCC:*_CLANG38_*_CC_FLAGS = -std=c99\r
115 GCC:*_CLANGPDB_*_CC_FLAGS = -std=c99 -Wno-error=incompatible-pointer-types\r
116\r
117 XCODE:*_*_*_CC_FLAGS = -std=c99\r