]> git.proxmox.com Git - mirror_edk2.git/blame - SecurityPkg/Library/PeiRsa2048Sha256GuidedSectionExtractLib/PeiRsa2048Sha256GuidedSectionExtractLib.inf
SecurityPkg: Clean up source files
[mirror_edk2.git] / SecurityPkg / Library / PeiRsa2048Sha256GuidedSectionExtractLib / PeiRsa2048Sha256GuidedSectionExtractLib.inf
CommitLineData
1a53a034 1## @file\r
b3548d32 2# This library doesn't produce any library class. The constructor function uses\r
1a53a034
MK
3# ExtractGuidedSectionLib service to register an RSA 2048 SHA 256 guided section handler\r
4# that parses RSA 2048 SHA 256 encapsulation section and extracts raw data.\r
5#\r
6# It uses the BaseCrypyLib based on OpenSSL to authenticate the signature.\r
7#\r
b3548d32 8# Copyright (c) 2013 - 2018, Intel Corporation. All rights reserved.<BR>\r
1a53a034
MK
9#\r
10# This program and the accompanying materials\r
11# are licensed and made available under the terms and conditions of the BSD License\r
12# which accompanies this distribution. The full text of the license may be found at\r
13# http://opensource.org/licenses/bsd-license.php\r
14# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
15# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
16#\r
17##\r
18\r
19[Defines]\r
20 INF_VERSION = 0x00010005\r
21 BASE_NAME = PeiRsa2048Sha256GuidedSectionExtractLib\r
22 FILE_GUID = FD5F2C91-4878-4007-BBA1-1B91DD325438\r
23 MODULE_TYPE = PEIM\r
24 VERSION_STRING = 1.0\r
25 LIBRARY_CLASS = NULL|PEI_CORE PEIM\r
26 CONSTRUCTOR = PeiRsa2048Sha256GuidedSectionExtractLibConstructor\r
27 MODULE_UNI_FILE = PeiRsa2048Sha256GuidedSectionExtractLib.uni\r
28\r
29#\r
30# The following information is for reference only and not required by the build tools.\r
31#\r
32# VALID_ARCHITECTURES = IA32 X64 IPF\r
33#\r
34\r
35[Sources]\r
36 PeiRsa2048Sha256GuidedSectionExtractLib.c\r
37\r
38[Packages]\r
39 MdePkg/MdePkg.dec\r
40 CryptoPkg/CryptoPkg.dec\r
41 SecurityPkg/SecurityPkg.dec\r
42\r
43[LibraryClasses]\r
44 ExtractGuidedSectionLib\r
45 DebugLib\r
46 BaseMemoryLib\r
47 MemoryAllocationLib\r
48 BaseCryptLib\r
49 PcdLib\r
50 PerformanceLib\r
51\r
b3548d32 52[Pcd]\r
1a53a034 53 gEfiSecurityPkgTokenSpaceGuid.PcdRsa2048Sha256PublicKeyBuffer ## SOMETIMES_CONSUMES\r
b3548d32 54\r
1a53a034
MK
55[Guids]\r
56 gEfiCertTypeRsa2048Sha256Guid ## PRODUCES ## UNDEFINED # Specifies RSA 2048 SHA 256 authentication algorithm.\r
6a3dae68 57 gEfiHashAlgorithmSha256Guid ## SOMETIMES_CONSUMES ## UNDEFINED\r
b3548d32 58\r