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:
|
---|
10 | # HMAC-SHA256 functions, AES functions, RSA external
|
---|
11 | # functions, PKCS#7 SignedData sign functions, Diffie-Hellman functions, X.509
|
---|
12 | # certificate handler functions, authenticode signature verification functions,
|
---|
13 | # PEM handler functions, and pseudorandom number generator functions are not
|
---|
14 | # supported in this instance.
|
---|
15 | #
|
---|
16 | # Copyright (c) 2010 - 2020, Intel Corporation. All rights reserved.<BR>
|
---|
17 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
18 | #
|
---|
19 | ##
|
---|
20 |
|
---|
21 | [Defines]
|
---|
22 | INF_VERSION = 0x00010005
|
---|
23 | BASE_NAME = PeiCryptLib
|
---|
24 | MODULE_UNI_FILE = PeiCryptLib.uni
|
---|
25 | FILE_GUID = 9a2a4375-194c-4e97-9f67-547ec98d96ca
|
---|
26 | MODULE_TYPE = PEIM
|
---|
27 | VERSION_STRING = 1.0
|
---|
28 | LIBRARY_CLASS = BaseCryptLib|PEIM PEI_CORE
|
---|
29 |
|
---|
30 | #
|
---|
31 | # The following information is for reference only and not required by the build tools.
|
---|
32 | #
|
---|
33 | # VALID_ARCHITECTURES = IA32 X64
|
---|
34 | #
|
---|
35 |
|
---|
36 | [Sources]
|
---|
37 | InternalCryptLib.h
|
---|
38 | Hash/CryptMd5.c
|
---|
39 | Hash/CryptSha1.c
|
---|
40 | Hash/CryptSha256.c
|
---|
41 | Hash/CryptSm3.c
|
---|
42 | Hash/CryptSha512.c
|
---|
43 | Hmac/CryptHmacSha256Null.c
|
---|
44 | Kdf/CryptHkdfNull.c
|
---|
45 | Cipher/CryptAesNull.c
|
---|
46 | Pk/CryptRsaBasic.c
|
---|
47 | Pk/CryptRsaExtNull.c
|
---|
48 | Pk/CryptPkcs1OaepNull.c
|
---|
49 | Pk/CryptPkcs5Pbkdf2Null.c
|
---|
50 | Pk/CryptPkcs7SignNull.c
|
---|
51 | Pk/CryptPkcs7VerifyCommon.c
|
---|
52 | Pk/CryptPkcs7VerifyBase.c
|
---|
53 | Pk/CryptPkcs7VerifyEku.c
|
---|
54 | Pk/CryptDhNull.c
|
---|
55 | Pk/CryptX509Null.c
|
---|
56 | Pk/CryptAuthenticodeNull.c
|
---|
57 | Pk/CryptTsNull.c
|
---|
58 | Pem/CryptPemNull.c
|
---|
59 | Rand/CryptRandNull.c
|
---|
60 |
|
---|
61 | SysCall/CrtWrapper.c
|
---|
62 | SysCall/ConstantTimeClock.c
|
---|
63 | SysCall/BaseMemAllocation.c
|
---|
64 |
|
---|
65 | [Packages]
|
---|
66 | MdePkg/MdePkg.dec
|
---|
67 | CryptoPkg/CryptoPkg.dec
|
---|
68 |
|
---|
69 | [LibraryClasses]
|
---|
70 | BaseLib
|
---|
71 | BaseMemoryLib
|
---|
72 | MemoryAllocationLib
|
---|
73 | DebugLib
|
---|
74 | OpensslLib
|
---|
75 | IntrinsicLib
|
---|
76 |
|
---|
77 | #
|
---|
78 | # Remove these [BuildOptions] after this library is cleaned up
|
---|
79 | #
|
---|
80 | [BuildOptions]
|
---|
81 | #
|
---|
82 | # suppress the following warnings so we do not break the build with warnings-as-errors:
|
---|
83 | # C4090: 'function' : different 'const' qualifiers
|
---|
84 | # C4718: 'function call' : recursive call has no side effects, deleting
|
---|
85 | #
|
---|
86 | MSFT:*_*_*_CC_FLAGS = /wd4090 /wd4718
|
---|
87 |
|
---|
88 | # -JCryptoPkg/Include : To disable the use of the system includes provided by RVCT
|
---|
89 | # --diag_remark=1 : Reduce severity of "#1-D: last line of file ends without a newline"
|
---|
90 | RVCT:*_*_ARM_CC_FLAGS = -JCryptoPkg/Include --diag_remark=1
|
---|
91 |
|
---|
92 | GCC:*_CLANG35_*_CC_FLAGS = -std=c99
|
---|
93 | GCC:*_CLANG38_*_CC_FLAGS = -std=c99
|
---|
94 | GCC:*_CLANGPDB_*_CC_FLAGS = -std=c99 -Wno-error=incompatible-pointer-types
|
---|
95 |
|
---|
96 | XCODE:*_*_*_CC_FLAGS = -std=c99
|
---|