]> git.proxmox.com Git - mirror_edk2.git/blob - CryptoPkg/Library/BaseCryptLib/RuntimeCryptLib.inf
CryptoPkg: Add RISC-V architecture for EDK2 CI.
[mirror_edk2.git] / CryptoPkg / Library / BaseCryptLib / RuntimeCryptLib.inf
1 ## @file
2 # Cryptographic Library Instance for DXE_RUNTIME_DRIVER.
3 #
4 # Caution: This module requires additional review when modified.
5 # This library will have external input - signature.
6 # This external input must be validated carefully to avoid security issues such as
7 # buffer overflow or integer overflow.
8 #
9 # Note: MD4 Digest functions, SHA-384 Digest functions, SHA-512 Digest functions,
10 # HMAC-MD5 functions, HMAC-SHA1/SHA256 functions, AES/TDES/ARC4 functions, RSA external
11 # functions, PKCS#7 SignedData sign functions, Diffie-Hellman functions, and
12 # authenticode signature verification functions are not supported in this instance.
13 #
14 # Copyright (c) 2009 - 2019, Intel Corporation. All rights reserved.<BR>
15 # Copyright (c) 2020, Hewlett Packard Enterprise Development LP. All rights reserved.<BR>
16 # SPDX-License-Identifier: BSD-2-Clause-Patent
17 #
18 ##
19
20 [Defines]
21 INF_VERSION = 0x00010005
22 BASE_NAME = RuntimeCryptLib
23 MODULE_UNI_FILE = RuntimeCryptLib.uni
24 FILE_GUID = 78189cc0-727d-46a4-84ea-f7dd860de64a
25 MODULE_TYPE = DXE_RUNTIME_DRIVER
26 VERSION_STRING = 1.0
27 LIBRARY_CLASS = BaseCryptLib|DXE_RUNTIME_DRIVER
28 CONSTRUCTOR = RuntimeCryptLibConstructor
29
30 #
31 # The following information is for reference only and not required by the build tools.
32 #
33 # VALID_ARCHITECTURES = IA32 X64 ARM AARCH64
34 #
35
36 [Sources]
37 InternalCryptLib.h
38 Hash/CryptMd4Null.c
39 Hash/CryptMd5.c
40 Hash/CryptSha1.c
41 Hash/CryptSha256.c
42 Hash/CryptSm3.c
43 Hash/CryptSha512Null.c
44 Hmac/CryptHmacMd5Null.c
45 Hmac/CryptHmacSha1Null.c
46 Hmac/CryptHmacSha256Null.c
47 Kdf/CryptHkdfNull.c
48 Cipher/CryptAesNull.c
49 Cipher/CryptTdesNull.c
50 Cipher/CryptArc4Null.c
51 Pk/CryptRsaBasic.c
52 Pk/CryptRsaExtNull.c
53 Pk/CryptPkcs1OaepNull.c
54 Pk/CryptPkcs5Pbkdf2Null.c
55 Pk/CryptPkcs7SignNull.c
56 Pk/CryptPkcs7VerifyCommon.c
57 Pk/CryptPkcs7VerifyRuntime.c
58 Pk/CryptPkcs7VerifyEkuRuntime.c
59 Pk/CryptDhNull.c
60 Pk/CryptX509.c
61 Pk/CryptAuthenticodeNull.c
62 Pk/CryptTsNull.c
63 Pem/CryptPem.c
64
65 SysCall/CrtWrapper.c
66 SysCall/TimerWrapper.c
67 SysCall/RuntimeMemAllocation.c
68
69 [Sources.Ia32]
70 Rand/CryptRandTsc.c
71
72 [Sources.X64]
73 Rand/CryptRandTsc.c
74
75 [Sources.ARM]
76 Rand/CryptRand.c
77
78 [Sources.AARCH64]
79 Rand/CryptRand.c
80
81 [Sources.RISCV64]
82 Rand/CryptRand.c
83
84 [Packages]
85 MdePkg/MdePkg.dec
86 CryptoPkg/CryptoPkg.dec
87
88 [LibraryClasses]
89 BaseLib
90 BaseMemoryLib
91 UefiBootServicesTableLib
92 UefiRuntimeServicesTableLib
93 DebugLib
94 OpensslLib
95 IntrinsicLib
96 PrintLib
97
98 #
99 # Remove these [BuildOptions] after this library is cleaned up
100 #
101 [BuildOptions]
102 #
103 # suppress the following warnings so we do not break the build with warnings-as-errors:
104 # C4090: 'function' : different 'const' qualifiers
105 #
106 MSFT:*_*_*_CC_FLAGS = /wd4090
107
108 # -JCryptoPkg/Include : To disable the use of the system includes provided by RVCT
109 # --diag_remark=1 : Reduce severity of "#1-D: last line of file ends without a newline"
110 RVCT:*_*_ARM_CC_FLAGS = -JCryptoPkg/Include --diag_remark=1
111
112 GCC:*_CLANG35_*_CC_FLAGS = -std=c99
113 GCC:*_CLANG38_*_CC_FLAGS = -std=c99
114 GCC:*_CLANGPDB_*_CC_FLAGS = -std=c99 -Wno-error=incompatible-pointer-types
115
116 XCODE:*_*_*_CC_FLAGS = -std=c99