]> git.proxmox.com Git - mirror_edk2.git/blame - CryptoPkg/Library/BaseCryptLib/RuntimeCryptLib.inf
CryptoPkg/CryptoDxe: Add function to indicate the deprecated algorithm
[mirror_edk2.git] / CryptoPkg / Library / BaseCryptLib / RuntimeCryptLib.inf
CommitLineData
97f98500 1## @file\r
dda856b3 2# Cryptographic Library Instance for DXE_RUNTIME_DRIVER.\r
97f98500 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
72009c62 10# HMAC-MD5 functions, HMAC-SHA1/SHA256 functions, AES/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) 2009 - 2019, Intel Corporation. All rights reserved.<BR>\r
9025a014 15# Copyright (c) 2020, Hewlett Packard Enterprise Development LP. All rights reserved.<BR>\r
2009f6b4 16# SPDX-License-Identifier: BSD-2-Clause-Patent\r
2ac68e8b 17#\r
97f98500
HT
18##\r
19\r
20[Defines]\r
21 INF_VERSION = 0x00010005\r
22 BASE_NAME = RuntimeCryptLib\r
dda856b3 23 MODULE_UNI_FILE = RuntimeCryptLib.uni\r
97f98500
HT
24 FILE_GUID = 78189cc0-727d-46a4-84ea-f7dd860de64a\r
25 MODULE_TYPE = DXE_RUNTIME_DRIVER\r
26 VERSION_STRING = 1.0\r
532616bb 27 LIBRARY_CLASS = BaseCryptLib|DXE_RUNTIME_DRIVER\r
97f98500
HT
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
94d67262 33# VALID_ARCHITECTURES = IA32 X64 ARM AARCH64\r
97f98500
HT
34#\r
35\r
36[Sources]\r
9e55ce6b 37 InternalCryptLib.h\r
532616bb 38 Hash/CryptMd4Null.c\r
97f98500
HT
39 Hash/CryptMd5.c\r
40 Hash/CryptSha1.c\r
41 Hash/CryptSha256.c\r
f0718d1d 42 Hash/CryptSm3.c\r
2ac68e8b 43 Hash/CryptSha512Null.c\r
532616bb 44 Hmac/CryptHmacMd5Null.c\r
45 Hmac/CryptHmacSha1Null.c\r
72009c62 46 Hmac/CryptHmacSha256Null.c\r
4b1b7c19 47 Kdf/CryptHkdfNull.c\r
532616bb 48 Cipher/CryptAesNull.c\r
49 Cipher/CryptTdesNull.c\r
50 Cipher/CryptArc4Null.c\r
51 Pk/CryptRsaBasic.c\r
52 Pk/CryptRsaExtNull.c\r
933f1990 53 Pk/CryptPkcs1OaepNull.c\r
a8f37449 54 Pk/CryptPkcs5Pbkdf2Null.c\r
532616bb 55 Pk/CryptPkcs7SignNull.c\r
cc01b26e
JW
56 Pk/CryptPkcs7VerifyCommon.c\r
57 Pk/CryptPkcs7VerifyRuntime.c\r
23c3178c 58 Pk/CryptPkcs7VerifyEkuRuntime.c\r
532616bb 59 Pk/CryptDhNull.c\r
e8b4eb04 60 Pk/CryptX509.c\r
532616bb 61 Pk/CryptAuthenticodeNull.c\r
2ac68e8b 62 Pk/CryptTsNull.c\r
b7d320f8 63 Pem/CryptPem.c\r
64\r
97f98500
HT
65 SysCall/CrtWrapper.c\r
66 SysCall/TimerWrapper.c\r
97f98500
HT
67 SysCall/RuntimeMemAllocation.c\r
68\r
69[Sources.Ia32]\r
7ce960e7 70 Rand/CryptRandTsc.c\r
71\r
72[Sources.X64]\r
73 Rand/CryptRandTsc.c\r
74\r
7ce960e7 75[Sources.ARM]\r
76 Rand/CryptRand.c\r
77\r
d1984abc
RC
78[Sources.AARCH64]\r
79 Rand/CryptRand.c\r
80\r
9025a014
AC
81[Sources.RISCV64]\r
82 Rand/CryptRand.c\r
83\r
97f98500
HT
84[Packages]\r
85 MdePkg/MdePkg.dec\r
86 CryptoPkg/CryptoPkg.dec\r
87\r
88[LibraryClasses]\r
89 BaseLib\r
90 BaseMemoryLib\r
97f98500
HT
91 UefiBootServicesTableLib\r
92 UefiRuntimeServicesTableLib\r
93 DebugLib\r
94 OpensslLib\r
95 IntrinsicLib\r
7ce960e7 96 PrintLib\r
97f98500
HT
97\r
98#\r
99# Remove these [BuildOptions] after this library is cleaned up\r
100#\r
101[BuildOptions]\r
ec7ad9e1
QL
102 #\r
103 # suppress the following warnings so we do not break the build with warnings-as-errors:\r
104 # C4090: 'function' : different 'const' qualifiers\r
105 #\r
106 MSFT:*_*_*_CC_FLAGS = /wd4090\r
107\r
5fa05671
AB
108 # -JCryptoPkg/Include : To disable the use of the system includes provided by RVCT\r
109 # --diag_remark=1 : Reduce severity of "#1-D: last line of file ends without a newline"\r
110 RVCT:*_*_ARM_CC_FLAGS = -JCryptoPkg/Include --diag_remark=1\r
c51f8bae 111\r
f03859ea 112 GCC:*_CLANG35_*_CC_FLAGS = -std=c99\r
c51f8bae 113 GCC:*_CLANG38_*_CC_FLAGS = -std=c99\r
8ecd8c49 114 GCC:*_CLANGPDB_*_CC_FLAGS = -std=c99 -Wno-error=incompatible-pointer-types\r
466c6634
XL
115\r
116 XCODE:*_*_*_CC_FLAGS = -std=c99\r