Last change
on this file was 101291, checked in by vboxsync, 19 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.3 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | # Implements the BaseCryptLib and TlsLib using the services of the EDK II Crypto
|
---|
3 | # Protocol.
|
---|
4 | #
|
---|
5 | # Copyright (C) Microsoft Corporation. All rights reserved.
|
---|
6 | # Copyright (c) 2020, Hewlett Packard Enterprise Development LP. All rights reserved.<BR>
|
---|
7 | # Copyright (c) 2022, Loongson Technology Corporation Limited. All rights reserved.<BR>
|
---|
8 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
9 | #
|
---|
10 | ##
|
---|
11 |
|
---|
12 | [Defines]
|
---|
13 | INF_VERSION = 0x0001001B
|
---|
14 | BASE_NAME = DxeCryptLib
|
---|
15 | MODULE_UNI_FILE = CryptLib.uni
|
---|
16 | FILE_GUID = B38CBDA6-8017-4111-8232-9E8328DE82F6
|
---|
17 | VERSION_STRING = 1.0
|
---|
18 | MODULE_TYPE = DXE_DRIVER
|
---|
19 | LIBRARY_CLASS = BaseCryptLib | DXE_DRIVER UEFI_DRIVER UEFI_APPLICATION DXE_CORE
|
---|
20 | LIBRARY_CLASS = TlsLib | DXE_DRIVER UEFI_DRIVER UEFI_APPLICATION
|
---|
21 | CONSTRUCTOR = DxeCryptLibConstructor
|
---|
22 |
|
---|
23 | #
|
---|
24 | # The following information is for reference only and not required by the build tools.
|
---|
25 | #
|
---|
26 | # VALID_ARCHITECTURES = IA32 X64 ARM AARCH64 RISCV64 LOONGARCH64
|
---|
27 | #
|
---|
28 |
|
---|
29 | [Packages]
|
---|
30 | MdePkg/MdePkg.dec
|
---|
31 | CryptoPkg/CryptoPkg.dec
|
---|
32 |
|
---|
33 | [LibraryClasses]
|
---|
34 | BaseLib
|
---|
35 | DebugLib
|
---|
36 | UefiBootServicesTableLib
|
---|
37 |
|
---|
38 | [Sources]
|
---|
39 | DxeCryptLib.c
|
---|
40 | CryptLib.c
|
---|
41 |
|
---|
42 | [Protocols]
|
---|
43 | gEdkiiCryptoProtocolGuid ## CONSUMES
|
---|
44 |
|
---|
45 | [Depex]
|
---|
46 | gEdkiiCryptoProtocolGuid
|
---|
Note:
See
TracBrowser
for help on using the repository browser.