]> git.proxmox.com Git - mirror_edk2.git/blob - CryptoPkg/Library/BaseCryptLib/BaseCryptLib.inf
CryptoPkg: INF/DEC file updates to EDK II packages
[mirror_edk2.git] / CryptoPkg / Library / BaseCryptLib / BaseCryptLib.inf
1 ## @file
2 # Cryptographic Library Instance for DXE_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 # Copyright (c) 2009 - 2014, Intel Corporation. All rights reserved.<BR>
10 # This program and the accompanying materials
11 # are licensed and made available under the terms and conditions of the BSD License
12 # which accompanies this distribution. The full text of the license may be found at
13 # http://opensource.org/licenses/bsd-license.php
14 #
15 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
16 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
17 #
18 ##
19
20 [Defines]
21 INF_VERSION = 0x00010005
22 BASE_NAME = BaseCryptLib
23 MODULE_UNI_FILE = BaseCryptLib.uni
24 FILE_GUID = be3bb803-91b6-4da0-bd91-a8b21c18ca5d
25 MODULE_TYPE = DXE_DRIVER
26 VERSION_STRING = 1.0
27 LIBRARY_CLASS = BaseCryptLib|DXE_DRIVER DXE_CORE UEFI_APPLICATION UEFI_DRIVER
28
29 #
30 # The following information is for reference only and not required by the build tools.
31 #
32 # VALID_ARCHITECTURES = IA32 X64 IPF ARM AARCH64
33 #
34
35 [Sources]
36 InternalCryptLib.h
37 Hash/CryptMd4.c
38 Hash/CryptMd5.c
39 Hash/CryptSha1.c
40 Hash/CryptSha256.c
41 Hmac/CryptHmacMd5.c
42 Hmac/CryptHmacSha1.c
43 Cipher/CryptAes.c
44 Cipher/CryptTdes.c
45 Cipher/CryptArc4.c
46 Pk/CryptRsaBasic.c
47 Pk/CryptRsaExt.c
48 Pk/CryptPkcs7Sign.c
49 Pk/CryptPkcs7Verify.c
50 Pk/CryptDh.c
51 Pk/CryptX509.c
52 Pk/CryptAuthenticode.c
53 Pem/CryptPem.c
54
55 SysCall/CrtWrapper.c
56 SysCall/TimerWrapper.c
57 SysCall/BaseMemAllocation.c
58
59 [Sources.Ia32]
60 SysCall/Ia32/MathMultS64x64.c | MSFT
61 SysCall/Ia32/MathDivU64x64.c | MSFT
62 SysCall/Ia32/MathReminderU64x64.c | MSFT
63 SysCall/Ia32/MathLShiftS64.c | MSFT
64 SysCall/Ia32/MathRShiftU64.c | MSFT
65
66 SysCall/Ia32/MathMultS64x64.c | INTEL
67 SysCall/Ia32/MathDivU64x64.c | INTEL
68 SysCall/Ia32/MathReminderU64x64.c | INTEL
69 SysCall/Ia32/MathLShiftS64.c | INTEL
70 SysCall/Ia32/MathRShiftU64.c | INTEL
71
72 SysCall/Ia32/MathMultS64x64.S | GCC
73 SysCall/Ia32/MathDivU64x64.S | GCC
74 SysCall/Ia32/MathReminderU64x64.S | GCC
75 SysCall/Ia32/MathLShiftS64.S | GCC
76 SysCall/Ia32/MathRShiftU64.S | GCC
77
78 Rand/CryptRandTsc.c
79
80 [Sources.X64]
81 Rand/CryptRandTsc.c
82
83 [Sources.IPF]
84 Rand/CryptRandItc.c
85
86 [Sources.ARM]
87 Rand/CryptRand.c
88
89 [Sources.AARCH64]
90 Rand/CryptRand.c
91
92 [Packages]
93 MdePkg/MdePkg.dec
94 CryptoPkg/CryptoPkg.dec
95
96 [LibraryClasses]
97 BaseLib
98 BaseMemoryLib
99 MemoryAllocationLib
100 UefiRuntimeServicesTableLib
101 DebugLib
102 OpensslLib
103 IntrinsicLib
104 PrintLib
105
106 #
107 # Remove these [BuildOptions] after this library is cleaned up
108 #
109 [BuildOptions]
110 GCC:*_GCC44_IA32_CC_FLAGS = "-D__cdecl=__attribute__((cdecl))" "-D__declspec(t)=__attribute__((t))"