Last change
on this file was 85718, checked in by vboxsync, 5 years ago |
Devices/EFI: Merge edk-stable202005 and make it build, bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
1.6 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | # This library doesn't produce any library class. The constructor function uses
|
---|
3 | # ExtractGuidedSectionLib service to register an RSA 2048 SHA 256 guided section handler
|
---|
4 | # that parses RSA 2048 SHA 256 encapsulation section and extracts raw data.
|
---|
5 | #
|
---|
6 | # It uses the BaseCryptLib based on OpenSSL to authenticate the signature.
|
---|
7 | #
|
---|
8 | # Copyright (c) 2013 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
9 | #
|
---|
10 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
11 | #
|
---|
12 | ##
|
---|
13 |
|
---|
14 | [Defines]
|
---|
15 | INF_VERSION = 0x00010005
|
---|
16 | BASE_NAME = PeiRsa2048Sha256GuidedSectionExtractLib
|
---|
17 | FILE_GUID = FD5F2C91-4878-4007-BBA1-1B91DD325438
|
---|
18 | MODULE_TYPE = PEIM
|
---|
19 | VERSION_STRING = 1.0
|
---|
20 | LIBRARY_CLASS = NULL|PEI_CORE PEIM
|
---|
21 | CONSTRUCTOR = PeiRsa2048Sha256GuidedSectionExtractLibConstructor
|
---|
22 | MODULE_UNI_FILE = PeiRsa2048Sha256GuidedSectionExtractLib.uni
|
---|
23 |
|
---|
24 | #
|
---|
25 | # The following information is for reference only and not required by the build tools.
|
---|
26 | #
|
---|
27 | # VALID_ARCHITECTURES = IA32 X64
|
---|
28 | #
|
---|
29 |
|
---|
30 | [Sources]
|
---|
31 | PeiRsa2048Sha256GuidedSectionExtractLib.c
|
---|
32 |
|
---|
33 | [Packages]
|
---|
34 | MdePkg/MdePkg.dec
|
---|
35 | CryptoPkg/CryptoPkg.dec
|
---|
36 | SecurityPkg/SecurityPkg.dec
|
---|
37 |
|
---|
38 | [LibraryClasses]
|
---|
39 | ExtractGuidedSectionLib
|
---|
40 | DebugLib
|
---|
41 | BaseMemoryLib
|
---|
42 | MemoryAllocationLib
|
---|
43 | BaseCryptLib
|
---|
44 | PcdLib
|
---|
45 | PerformanceLib
|
---|
46 |
|
---|
47 | [Pcd]
|
---|
48 | gEfiSecurityPkgTokenSpaceGuid.PcdRsa2048Sha256PublicKeyBuffer ## SOMETIMES_CONSUMES
|
---|
49 |
|
---|
50 | [Guids]
|
---|
51 | gEfiCertTypeRsa2048Sha256Guid ## PRODUCES ## UNDEFINED # Specifies RSA 2048 SHA 256 authentication algorithm.
|
---|
52 | gEfiHashAlgorithmSha256Guid ## SOMETIMES_CONSUMES ## UNDEFINED
|
---|
53 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.