]> git.proxmox.com Git - mirror_edk2.git/blob - CryptoPkg/Library/BaseCryptLib/BaseCryptLib.inf
Fix the checking logic for the boot option enumeration.
[mirror_edk2.git] / CryptoPkg / Library / BaseCryptLib / BaseCryptLib.inf
1 ## @file
2 # Cryptographic Library Instance for DXE_DRIVER.
3 #
4 # Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.<BR>
5 # This program and the accompanying materials
6 # are licensed and made available under the terms and conditions of the BSD License
7 # which accompanies this distribution. The full text of the license may be found at
8 # http://opensource.org/licenses/bsd-license.php
9 #
10 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12 #
13 ##
14
15 [Defines]
16 INF_VERSION = 0x00010005
17 BASE_NAME = BaseCryptLib
18 FILE_GUID = be3bb803-91b6-4da0-bd91-a8b21c18ca5d
19 MODULE_TYPE = BASE
20 VERSION_STRING = 1.0
21 LIBRARY_CLASS = BaseCryptLib
22
23 #
24 # The following information is for reference only and not required by the build tools.
25 #
26 # VALID_ARCHITECTURES = IA32 X64 IPF
27 #
28
29 [Sources]
30 InternalCryptLib.h
31 Hash/CryptMd5.c
32 Hash/CryptSha1.c
33 Hash/CryptSha256.c
34 Hmac/CryptHmacMd5.c
35 Hmac/CryptHmacSha1.c
36 Cipher/CryptAes.c
37 Cipher/CryptTdes.c
38 Cipher/CryptArc4.c
39 Rand/CryptRand.c
40 Pk/CryptRsa.c
41 Pk/CryptPkcs7.c
42 Pk/CryptDh.c
43
44 SysCall/CrtWrapper.c
45 SysCall/TimerWrapper.c
46 SysCall/BaseMemAllocation.c
47
48 [Sources.Ia32]
49 SysCall/HelperWrapper.c
50
51 SysCall/Ia32/MathMultS64x64.c | MSFT
52 SysCall/Ia32/MathDivU64x64.c | MSFT
53 SysCall/Ia32/MathReminderU64x64.c | MSFT
54 SysCall/Ia32/MathLShiftS64.c | MSFT
55 SysCall/Ia32/MathRShiftU64.c | MSFT
56
57 SysCall/Ia32/MathMultS64x64.c | INTEL
58 SysCall/Ia32/MathDivU64x64.c | INTEL
59 SysCall/Ia32/MathReminderU64x64.c | INTEL
60 SysCall/Ia32/MathLShiftS64.c | INTEL
61 SysCall/Ia32/MathRShiftU64.c | INTEL
62
63 SysCall/Ia32/MathMultS64x64.S | GCC
64 SysCall/Ia32/MathDivU64x64.S | GCC
65 SysCall/Ia32/MathReminderU64x64.S | GCC
66 SysCall/Ia32/MathLShiftS64.S | GCC
67 SysCall/Ia32/MathRShiftU64.S | GCC
68
69 [Packages]
70 MdePkg/MdePkg.dec
71 CryptoPkg/CryptoPkg.dec
72
73 [LibraryClasses]
74 BaseLib
75 BaseMemoryLib
76 MemoryAllocationLib
77 DebugLib
78 OpensslLib
79 IntrinsicLib
80
81 #
82 # Remove these [BuildOptions] after this library is cleaned up
83 #
84 [BuildOptions]
85 GCC:*_GCC44_IA32_CC_FLAGS = "-D__cdecl=__attribute__((cdecl))" "-D__declspec(t)=__attribute__((t))"