Last change
on this file since 107040 was 101291, checked in by vboxsync, 20 months ago |
EFI/FirmwareNew: Make edk2-stable202308 build on all supported platforms (using gcc at least, msvc not tested yet), bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
1.9 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | # Cryptographic Library Instance for host based unit tests
|
---|
3 | #
|
---|
4 | # Copyright (c) 2009 - 2019, Intel Corporation. All rights reserved.<BR>
|
---|
5 | # Copyright (c) Microsoft Corporation.
|
---|
6 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
7 | #
|
---|
8 | ##
|
---|
9 |
|
---|
10 | [Defines]
|
---|
11 | INF_VERSION = 0x00010005
|
---|
12 | BASE_NAME = BaseCryptLib
|
---|
13 | FILE_GUID = c97d34aa-caf8-42cd-8261-8705f46304b3
|
---|
14 | MODULE_TYPE = DXE_DRIVER
|
---|
15 | VERSION_STRING = 1.0
|
---|
16 | LIBRARY_CLASS = BaseCryptLib|HOST_APPLICATION
|
---|
17 |
|
---|
18 | #
|
---|
19 | # The following information is for reference only and not required by the build tools.
|
---|
20 | #
|
---|
21 | # VALID_ARCHITECTURES = IA32 X64
|
---|
22 | #
|
---|
23 |
|
---|
24 | [Sources]
|
---|
25 | InternalCryptLib.h
|
---|
26 | Hash/CryptMd5.c
|
---|
27 | Hash/CryptSha1.c
|
---|
28 | Hash/CryptSha256.c
|
---|
29 | Hash/CryptSha512.c
|
---|
30 | Hash/CryptSm3.c
|
---|
31 | Hash/CryptParallelHashNull.c
|
---|
32 | Hmac/CryptHmac.c
|
---|
33 | Kdf/CryptHkdf.c
|
---|
34 | Cipher/CryptAes.c
|
---|
35 | Cipher/CryptAeadAesGcm.c
|
---|
36 | Pk/CryptRsaBasic.c
|
---|
37 | Pk/CryptRsaExt.c
|
---|
38 | Pk/CryptPkcs1Oaep.c
|
---|
39 | Pk/CryptPkcs5Pbkdf2.c
|
---|
40 | Pk/CryptPkcs7Sign.c
|
---|
41 | Pk/CryptPkcs7VerifyCommon.c
|
---|
42 | Pk/CryptPkcs7VerifyBase.c
|
---|
43 | Pk/CryptPkcs7VerifyEku.c
|
---|
44 | Pk/CryptDh.c
|
---|
45 | Pk/CryptX509.c
|
---|
46 | Pk/CryptAuthenticode.c
|
---|
47 | Pk/CryptTs.c
|
---|
48 | Pem/CryptPem.c
|
---|
49 | Pk/CryptRsaPss.c
|
---|
50 | Pk/CryptRsaPssSign.c
|
---|
51 | Bn/CryptBn.c
|
---|
52 | Pk/CryptEc.c
|
---|
53 |
|
---|
54 | SysCall/UnitTestHostCrtWrapper.c
|
---|
55 |
|
---|
56 | [Sources.Ia32]
|
---|
57 | Rand/CryptRandTsc.c
|
---|
58 |
|
---|
59 | [Sources.X64]
|
---|
60 | Rand/CryptRandTsc.c
|
---|
61 |
|
---|
62 | [Packages]
|
---|
63 | MdePkg/MdePkg.dec
|
---|
64 | CryptoPkg/CryptoPkg.dec
|
---|
65 |
|
---|
66 | [LibraryClasses]
|
---|
67 | BaseLib
|
---|
68 | BaseMemoryLib
|
---|
69 | MemoryAllocationLib
|
---|
70 | DebugLib
|
---|
71 | OpensslLib
|
---|
72 | PrintLib
|
---|
73 |
|
---|
74 | #
|
---|
75 | # Remove these [BuildOptions] after this library is cleaned up
|
---|
76 | #
|
---|
77 | [BuildOptions]
|
---|
78 | #
|
---|
79 | # suppress the following warnings so we do not break the build with warnings-as-errors:
|
---|
80 | #
|
---|
81 | GCC:*_CLANGDWARF_*_CC_FLAGS = -std=c99 -Wno-error=incompatible-pointer-types
|
---|
82 | GCC:*_CLANGPDB_*_CC_FLAGS = -std=c99 -Wno-error=incompatible-pointer-types
|
---|
83 |
|
---|
84 | XCODE:*_*_*_CC_FLAGS = -std=c99
|
---|
Note:
See
TracBrowser
for help on using the repository browser.