]> git.proxmox.com Git - mirror_edk2.git/blame - CryptoPkg/Library/BaseCryptLib/PeiCryptLib.inf
Add interfaces to several library instances of BaseCryptLib.
[mirror_edk2.git] / CryptoPkg / Library / BaseCryptLib / PeiCryptLib.inf
CommitLineData
97f98500
HT
1## @file\r
2# Cryptographic Library Instance for PEIM.\r
3#\r
dc204d5a
JY
4# Caution: This module requires additional review when modified.\r
5# This library will have external input - signature.\r
6# This external input must be validated carefully to avoid security issue like\r
7# buffer overflow, integer overflow.\r
8#\r
532616bb 9# Note: MD4 Digest functions, HMAC-MD5 functions, HMAC-SHA1 functions, AES/\r
10# TDES/ARC4 functions, RSA external functions, PKCS#7 SignedData sign functions,\r
11# Diffie-Hellman functions, X.509 certificate handler functions, authenticode\r
12# signature verification functions, PEM handler functions, pseudorandom number\r
13# generator functions are not supported in this instance.\r
14#\r
dc204d5a 15# Copyright (c) 2010 - 2012, Intel Corporation. All rights reserved.<BR>\r
97f98500
HT
16# This program and the accompanying materials\r
17# are licensed and made available under the terms and conditions of the BSD License\r
18# which accompanies this distribution. The full text of the license may be found at\r
19# http://opensource.org/licenses/bsd-license.php\r
20# \r
21# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
22# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
23# \r
24##\r
25\r
26[Defines]\r
27 INF_VERSION = 0x00010005\r
28 BASE_NAME = PeiCryptLib\r
29 FILE_GUID = 9a2a4375-194c-4e97-9f67-547ec98d96ca\r
30 MODULE_TYPE = PEIM\r
31 VERSION_STRING = 1.0\r
532616bb 32 LIBRARY_CLASS = BaseCryptLib|PEIM PEI_CORE\r
97f98500
HT
33\r
34#\r
35# The following information is for reference only and not required by the build tools.\r
36#\r
37# VALID_ARCHITECTURES = IA32 X64\r
38#\r
39\r
40[Sources]\r
532616bb 41 Hash/CryptMd4Null.c\r
97f98500
HT
42 Hash/CryptMd5.c\r
43 Hash/CryptSha1.c\r
44 Hash/CryptSha256.c\r
532616bb 45 Hmac/CryptHmacMd5Null.c\r
46 Hmac/CryptHmacSha1Null.c\r
47 Cipher/CryptAesNull.c\r
48 Cipher/CryptTdesNull.c\r
49 Cipher/CryptArc4Null.c\r
50\r
51 Pk/CryptRsaBasic.c\r
52 Pk/CryptRsaExtNull.c\r
53 Pk/CryptPkcs7SignNull.c\r
54 Pk/CryptPkcs7Verify.c\r
55\r
56 Pk/CryptDhNull.c\r
57 Pk/CryptX509Null.c\r
58 Pk/CryptAuthenticodeNull.c\r
59 Pem/CryptPemNull.c\r
60\r
61 Rand/CryptRandNull.c\r
97f98500
HT
62\r
63 SysCall/CrtWrapper.c\r
97f98500
HT
64 SysCall/BaseMemAllocation.c\r
65\r
532616bb 66\r
97f98500
HT
67[Sources.Ia32]\r
68 SysCall/Ia32/MathMultS64x64.c | MSFT\r
69 SysCall/Ia32/MathDivU64x64.c | MSFT\r
70 SysCall/Ia32/MathReminderU64x64.c | MSFT\r
71 SysCall/Ia32/MathLShiftS64.c | MSFT\r
72 SysCall/Ia32/MathRShiftU64.c | MSFT\r
73\r
74 SysCall/Ia32/MathMultS64x64.c | INTEL\r
75 SysCall/Ia32/MathDivU64x64.c | INTEL\r
76 SysCall/Ia32/MathReminderU64x64.c | INTEL\r
77 SysCall/Ia32/MathLShiftS64.c | INTEL\r
78 SysCall/Ia32/MathRShiftU64.c | INTEL\r
79\r
80 SysCall/Ia32/MathMultS64x64.S | GCC\r
81 SysCall/Ia32/MathDivU64x64.S | GCC\r
82 SysCall/Ia32/MathReminderU64x64.S | GCC\r
83 SysCall/Ia32/MathLShiftS64.S | GCC\r
84 SysCall/Ia32/MathRShiftU64.S | GCC\r
85\r
97f98500
HT
86[Packages]\r
87 MdePkg/MdePkg.dec\r
88 CryptoPkg/CryptoPkg.dec\r
89\r
90[LibraryClasses]\r
91 BaseLib\r
92 BaseMemoryLib\r
93 MemoryAllocationLib\r
94 DebugLib\r
95 OpensslLib\r
96 IntrinsicLib\r
97\r
98#\r
99# Remove these [BuildOptions] after this library is cleaned up\r
100#\r
101[BuildOptions]\r
102 GCC:*_GCC44_IA32_CC_FLAGS = "-D__cdecl=__attribute__((cdecl))" "-D__declspec(t)=__attribute__((t))"\r
103 \r