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 | Hash/CryptSha512.c
|
---|
42 | Hmac/CryptHmacMd5.c
|
---|
43 | Hmac/CryptHmacSha1.c
|
---|
44 | Cipher/CryptAes.c
|
---|
45 | Cipher/CryptTdes.c
|
---|
46 | Cipher/CryptArc4.c
|
---|
47 | Pk/CryptRsaBasic.c
|
---|
48 | Pk/CryptRsaExt.c
|
---|
49 | Pk/CryptPkcs7Sign.c
|
---|
50 | Pk/CryptPkcs7Verify.c
|
---|
51 | Pk/CryptDh.c
|
---|
52 | Pk/CryptX509.c
|
---|
53 | Pk/CryptAuthenticode.c
|
---|
54 | Pk/CryptTs.c
|
---|
55 | Pem/CryptPem.c
|
---|
56 |
|
---|
57 | SysCall/CrtWrapper.c
|
---|
58 | SysCall/TimerWrapper.c
|
---|
59 | SysCall/BaseMemAllocation.c
|
---|
60 |
|
---|
61 | [Sources.Ia32]
|
---|
62 | Rand/CryptRandTsc.c
|
---|
63 |
|
---|
64 | [Sources.X64]
|
---|
65 | Rand/CryptRandTsc.c
|
---|
66 |
|
---|
67 | [Sources.IPF]
|
---|
68 | Rand/CryptRandItc.c
|
---|
69 |
|
---|
70 | [Sources.ARM]
|
---|
71 | Rand/CryptRand.c
|
---|
72 |
|
---|
73 | [Sources.AARCH64]
|
---|
74 | Rand/CryptRand.c
|
---|
75 |
|
---|
76 | [Packages]
|
---|
77 | MdePkg/MdePkg.dec
|
---|
78 | CryptoPkg/CryptoPkg.dec
|
---|
79 |
|
---|
80 | [LibraryClasses]
|
---|
81 | BaseLib
|
---|
82 | BaseMemoryLib
|
---|
83 | MemoryAllocationLib
|
---|
84 | UefiRuntimeServicesTableLib
|
---|
85 | DebugLib
|
---|
86 | OpensslLib
|
---|
87 | IntrinsicLib
|
---|
88 | PrintLib
|
---|
89 |
|
---|
90 | #
|
---|
91 | # Remove these [BuildOptions] after this library is cleaned up
|
---|
92 | #
|
---|
93 | [BuildOptions]
|
---|
94 | # suppress the following warnings so we do not break the build with warnings-as-errors:
|
---|
95 | # C4305: truncation from type1 to type2 (Introduced by RFC3161 Timestamp ASN.1 declarations)
|
---|
96 | MSFT:*_*_*_CC_FLAGS = /wd4305
|
---|
97 | GCC:*_GCC44_IA32_CC_FLAGS = "-D__cdecl=__attribute__((cdecl))" "-D__declspec(t)=__attribute__((t))"
|
---|