1 | ## @file
|
---|
2 | # Cryptographic Library Instance for PEIM.
|
---|
3 | #
|
---|
4 | # Copyright (c) 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 = PeiCryptLib
|
---|
18 | FILE_GUID = 9a2a4375-194c-4e97-9f67-547ec98d96ca
|
---|
19 | MODULE_TYPE = PEIM
|
---|
20 | VERSION_STRING = 1.0
|
---|
21 | LIBRARY_CLASS = BaseCryptLib|PEIM PEI_CORE SEC
|
---|
22 |
|
---|
23 | #
|
---|
24 | # The following information is for reference only and not required by the build tools.
|
---|
25 | #
|
---|
26 | # VALID_ARCHITECTURES = IA32 X64
|
---|
27 | #
|
---|
28 |
|
---|
29 | [Sources]
|
---|
30 | Hash/CryptMd5.c
|
---|
31 | Hash/CryptSha1.c
|
---|
32 | Hash/CryptSha256.c
|
---|
33 | Pk/CryptRsa.c
|
---|
34 |
|
---|
35 | SysCall/CrtWrapper.c
|
---|
36 | SysCall/BaseMemAllocation.c
|
---|
37 |
|
---|
38 | [Sources.Ia32]
|
---|
39 | SysCall/Ia32/MathMultS64x64.c | MSFT
|
---|
40 | SysCall/Ia32/MathDivU64x64.c | MSFT
|
---|
41 | SysCall/Ia32/MathReminderU64x64.c | MSFT
|
---|
42 | SysCall/Ia32/MathLShiftS64.c | MSFT
|
---|
43 | SysCall/Ia32/MathRShiftU64.c | MSFT
|
---|
44 |
|
---|
45 | SysCall/Ia32/MathMultS64x64.c | INTEL
|
---|
46 | SysCall/Ia32/MathDivU64x64.c | INTEL
|
---|
47 | SysCall/Ia32/MathReminderU64x64.c | INTEL
|
---|
48 | SysCall/Ia32/MathLShiftS64.c | INTEL
|
---|
49 | SysCall/Ia32/MathRShiftU64.c | INTEL
|
---|
50 |
|
---|
51 | SysCall/Ia32/MathMultS64x64.S | GCC
|
---|
52 | SysCall/Ia32/MathDivU64x64.S | GCC
|
---|
53 | SysCall/Ia32/MathReminderU64x64.S | GCC
|
---|
54 | SysCall/Ia32/MathLShiftS64.S | GCC
|
---|
55 | SysCall/Ia32/MathRShiftU64.S | GCC
|
---|
56 |
|
---|
57 | [Packages]
|
---|
58 | MdePkg/MdePkg.dec
|
---|
59 | CryptoPkg/CryptoPkg.dec
|
---|
60 |
|
---|
61 | [LibraryClasses]
|
---|
62 | BaseLib
|
---|
63 | BaseMemoryLib
|
---|
64 | MemoryAllocationLib
|
---|
65 | DebugLib
|
---|
66 | OpensslLib
|
---|
67 | IntrinsicLib
|
---|
68 |
|
---|
69 | #
|
---|
70 | # Remove these [BuildOptions] after this library is cleaned up
|
---|
71 | #
|
---|
72 | [BuildOptions]
|
---|
73 | GCC:*_GCC44_IA32_CC_FLAGS = "-D__cdecl=__attribute__((cdecl))" "-D__declspec(t)=__attribute__((t))"
|
---|
74 |
|
---|