]> git.proxmox.com Git - mirror_edk2.git/blame - SecurityPkg/Library/PeiRsa2048Sha256GuidedSectionExtractLib/PeiRsa2048Sha256GuidedSectionExtractLib.inf
SecurityPkg: Fix spelling errors
[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
d6b926e7 6# It uses the BaseCryptLib based on OpenSSL to authenticate the signature.\r
1a53a034 7#\r
b3548d32 8# Copyright (c) 2013 - 2018, Intel Corporation. All rights reserved.<BR>\r
1a53a034 9#\r
289b714b 10# SPDX-License-Identifier: BSD-2-Clause-Patent\r
1a53a034
MK
11#\r
12##\r
13\r
14[Defines]\r
15 INF_VERSION = 0x00010005\r
16 BASE_NAME = PeiRsa2048Sha256GuidedSectionExtractLib\r
17 FILE_GUID = FD5F2C91-4878-4007-BBA1-1B91DD325438\r
18 MODULE_TYPE = PEIM\r
19 VERSION_STRING = 1.0\r
20 LIBRARY_CLASS = NULL|PEI_CORE PEIM\r
21 CONSTRUCTOR = PeiRsa2048Sha256GuidedSectionExtractLibConstructor\r
22 MODULE_UNI_FILE = PeiRsa2048Sha256GuidedSectionExtractLib.uni\r
23\r
24#\r
25# The following information is for reference only and not required by the build tools.\r
26#\r
4cecd19a 27# VALID_ARCHITECTURES = IA32 X64\r
1a53a034
MK
28#\r
29\r
30[Sources]\r
31 PeiRsa2048Sha256GuidedSectionExtractLib.c\r
32\r
33[Packages]\r
34 MdePkg/MdePkg.dec\r
35 CryptoPkg/CryptoPkg.dec\r
36 SecurityPkg/SecurityPkg.dec\r
37\r
38[LibraryClasses]\r
39 ExtractGuidedSectionLib\r
40 DebugLib\r
41 BaseMemoryLib\r
42 MemoryAllocationLib\r
43 BaseCryptLib\r
44 PcdLib\r
45 PerformanceLib\r
46\r
b3548d32 47[Pcd]\r
1a53a034 48 gEfiSecurityPkgTokenSpaceGuid.PcdRsa2048Sha256PublicKeyBuffer ## SOMETIMES_CONSUMES\r
b3548d32 49\r
1a53a034
MK
50[Guids]\r
51 gEfiCertTypeRsa2048Sha256Guid ## PRODUCES ## UNDEFINED # Specifies RSA 2048 SHA 256 authentication algorithm.\r
6a3dae68 52 gEfiHashAlgorithmSha256Guid ## SOMETIMES_CONSUMES ## UNDEFINED\r
b3548d32 53\r