]> git.proxmox.com Git - mirror_edk2.git/blob - CryptoPkg/Library/BaseCryptLib/RuntimeCryptLib.inf
355ecc49697d1725f435ba72137487e0ccbde035
[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, HMAC-MD5 functions, HMAC-SHA1 functions, AES/
10 # TDES/ARC4 functions, RSA external functions, PKCS#7 SignedData sign functions,
11 # Diffie-Hellman functions, and authenticode signature verification functions are
12 # not supported in this instance.
13 #
14 # Copyright (c) 2009 - 2014, Intel Corporation. All rights reserved.<BR>
15 # This program and the accompanying materials
16 # are licensed and made available under the terms and conditions of the BSD License
17 # which accompanies this distribution. The full text of the license may be found at
18 # http://opensource.org/licenses/bsd-license.php
19 #
20 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
21 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
22 #
23 ##
24
25 [Defines]
26 INF_VERSION = 0x00010005
27 BASE_NAME = RuntimeCryptLib
28 MODULE_UNI_FILE = RuntimeCryptLib.uni
29 FILE_GUID = 78189cc0-727d-46a4-84ea-f7dd860de64a
30 MODULE_TYPE = DXE_RUNTIME_DRIVER
31 VERSION_STRING = 1.0
32 LIBRARY_CLASS = BaseCryptLib|DXE_RUNTIME_DRIVER
33 CONSTRUCTOR = RuntimeCryptLibConstructor
34
35 #
36 # The following information is for reference only and not required by the build tools.
37 #
38 # VALID_ARCHITECTURES = IA32 X64 IPF ARM AARCH64
39 #
40
41 [Sources]
42 Hash/CryptMd4Null.c
43 Hash/CryptMd5.c
44 Hash/CryptSha1.c
45 Hash/CryptSha256.c
46 Hmac/CryptHmacMd5Null.c
47 Hmac/CryptHmacSha1Null.c
48 Cipher/CryptAesNull.c
49 Cipher/CryptTdesNull.c
50 Cipher/CryptArc4Null.c
51 Pk/CryptRsaBasic.c
52 Pk/CryptRsaExtNull.c
53 Pk/CryptPkcs7SignNull.c
54 Pk/CryptPkcs7Verify.c
55 Pk/CryptDhNull.c
56 Pk/CryptX509.c
57 Pk/CryptAuthenticodeNull.c
58 Pem/CryptPem.c
59
60 SysCall/CrtWrapper.c
61 SysCall/TimerWrapper.c
62 SysCall/RuntimeMemAllocation.c
63
64 [Sources.Ia32]
65 SysCall/Ia32/MathMultS64x64.c | MSFT
66 SysCall/Ia32/MathDivU64x64.c | MSFT
67 SysCall/Ia32/MathReminderU64x64.c | MSFT
68 SysCall/Ia32/MathLShiftS64.c | MSFT
69 SysCall/Ia32/MathRShiftU64.c | MSFT
70
71 SysCall/Ia32/MathMultS64x64.c | INTEL
72 SysCall/Ia32/MathDivU64x64.c | INTEL
73 SysCall/Ia32/MathReminderU64x64.c | INTEL
74 SysCall/Ia32/MathLShiftS64.c | INTEL
75 SysCall/Ia32/MathRShiftU64.c | INTEL
76
77 SysCall/Ia32/MathMultS64x64.S | GCC
78 SysCall/Ia32/MathDivU64x64.S | GCC
79 SysCall/Ia32/MathReminderU64x64.S | GCC
80 SysCall/Ia32/MathLShiftS64.S | GCC
81 SysCall/Ia32/MathRShiftU64.S | GCC
82
83 Rand/CryptRandTsc.c
84
85 [Sources.X64]
86 Rand/CryptRandTsc.c
87
88 [Sources.IPF]
89 Rand/CryptRandItc.c
90
91 [Sources.ARM]
92 Rand/CryptRand.c
93
94 [Sources.AARCH64]
95 Rand/CryptRand.c
96
97 [Packages]
98 MdePkg/MdePkg.dec
99 CryptoPkg/CryptoPkg.dec
100
101 [LibraryClasses]
102 BaseLib
103 BaseMemoryLib
104 MemoryAllocationLib
105 UefiBootServicesTableLib
106 UefiRuntimeServicesTableLib
107 DebugLib
108 OpensslLib
109 IntrinsicLib
110 PrintLib
111
112 #
113 # Remove these [BuildOptions] after this library is cleaned up
114 #
115 [BuildOptions]
116 GCC:*_GCC44_IA32_CC_FLAGS = "-D__cdecl=__attribute__((cdecl))" "-D__declspec(t)=__attribute__((t))"
117