]> git.proxmox.com Git - mirror_edk2.git/blob - CryptoPkg/Library/BaseCryptLib/PeiCryptLib.inf
CryptoPkg: INF/DEC file updates to EDK II packages
[mirror_edk2.git] / CryptoPkg / Library / BaseCryptLib / PeiCryptLib.inf
1 ## @file
2 # Cryptographic Library Instance for PEIM.
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, X.509 certificate handler functions, authenticode
12 # signature verification functions, PEM handler functions, and pseudorandom number
13 # generator functions are not supported in this instance.
14 #
15 # Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved.<BR>
16 # This program and the accompanying materials
17 # are licensed and made available under the terms and conditions of the BSD License
18 # which accompanies this distribution. The full text of the license may be found at
19 # http://opensource.org/licenses/bsd-license.php
20 #
21 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
22 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
23 #
24 ##
25
26 [Defines]
27 INF_VERSION = 0x00010005
28 BASE_NAME = PeiCryptLib
29 MODULE_UNI_FILE = PeiCryptLib.uni
30 FILE_GUID = 9a2a4375-194c-4e97-9f67-547ec98d96ca
31 MODULE_TYPE = PEIM
32 VERSION_STRING = 1.0
33 LIBRARY_CLASS = BaseCryptLib|PEIM PEI_CORE
34
35 #
36 # The following information is for reference only and not required by the build tools.
37 #
38 # VALID_ARCHITECTURES = IA32 X64
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
52 Pk/CryptRsaBasic.c
53 Pk/CryptRsaExtNull.c
54 Pk/CryptPkcs7SignNull.c
55 Pk/CryptPkcs7Verify.c
56
57 Pk/CryptDhNull.c
58 Pk/CryptX509Null.c
59 Pk/CryptAuthenticodeNull.c
60 Pem/CryptPemNull.c
61
62 Rand/CryptRandNull.c
63
64 SysCall/CrtWrapper.c
65 SysCall/ConstantTimeClock.c
66 SysCall/BaseMemAllocation.c
67
68
69 [Sources.Ia32]
70 SysCall/Ia32/MathMultS64x64.c | MSFT
71 SysCall/Ia32/MathDivU64x64.c | MSFT
72 SysCall/Ia32/MathReminderU64x64.c | MSFT
73 SysCall/Ia32/MathLShiftS64.c | MSFT
74 SysCall/Ia32/MathRShiftU64.c | MSFT
75
76 SysCall/Ia32/MathMultS64x64.c | INTEL
77 SysCall/Ia32/MathDivU64x64.c | INTEL
78 SysCall/Ia32/MathReminderU64x64.c | INTEL
79 SysCall/Ia32/MathLShiftS64.c | INTEL
80 SysCall/Ia32/MathRShiftU64.c | INTEL
81
82 SysCall/Ia32/MathMultS64x64.S | GCC
83 SysCall/Ia32/MathDivU64x64.S | GCC
84 SysCall/Ia32/MathReminderU64x64.S | GCC
85 SysCall/Ia32/MathLShiftS64.S | GCC
86 SysCall/Ia32/MathRShiftU64.S | GCC
87
88 [Packages]
89 MdePkg/MdePkg.dec
90 CryptoPkg/CryptoPkg.dec
91
92 [LibraryClasses]
93 BaseLib
94 BaseMemoryLib
95 MemoryAllocationLib
96 DebugLib
97 OpensslLib
98 IntrinsicLib
99
100 #
101 # Remove these [BuildOptions] after this library is cleaned up
102 #
103 [BuildOptions]
104 GCC:*_GCC44_IA32_CC_FLAGS = "-D__cdecl=__attribute__((cdecl))" "-D__declspec(t)=__attribute__((t))"
105