]> git.proxmox.com Git - mirror_edk2.git/blame - SecurityPkg/Library/DxeRsa2048Sha256GuidedSectionExtractLib/DxeRsa2048Sha256GuidedSectionExtractLib.inf
SecurityPkg: Removing ipf which is no longer supported from edk2.
[mirror_edk2.git] / SecurityPkg / Library / DxeRsa2048Sha256GuidedSectionExtractLib / DxeRsa2048Sha256GuidedSectionExtractLib.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 = DxeRsa2048Sha256GuidedSectionExtractLib\r
22 FILE_GUID = 0AD6C423-4732-4cf3-9CE3-0A5416D634A5\r
23 MODULE_TYPE = DXE_DRIVER\r
24 VERSION_STRING = 1.0\r
4cecd19a 25 LIBRARY_CLASS = NULL|DXE_CORE DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SMM_DRIVER UEFI_APPLICATION UEFI_DRIVER\r
1a53a034
MK
26 CONSTRUCTOR = DxeRsa2048Sha256GuidedSectionExtractLibConstructor\r
27 MODULE_UNI_FILE = DxeRsa2048Sha256GuidedSectionExtractLib.uni\r
28\r
29#\r
30# The following information is for reference only and not required by the build tools.\r
31#\r
4cecd19a 32# VALID_ARCHITECTURES = IA32 X64\r
1a53a034
MK
33#\r
34\r
35[Sources]\r
36 DxeRsa2048Sha256GuidedSectionExtractLib.c\r
37\r
38[Packages]\r
39 MdePkg/MdePkg.dec\r
40 CryptoPkg/CryptoPkg.dec\r
41 SecurityPkg/SecurityPkg.dec\r
b3548d32 42\r
1a53a034
MK
43[LibraryClasses]\r
44 ExtractGuidedSectionLib\r
45 UefiBootServicesTableLib\r
46 DebugLib\r
47 BaseMemoryLib\r
48 MemoryAllocationLib\r
49 BaseCryptLib\r
50 PcdLib\r
51 PerformanceLib\r
52\r
b3548d32 53[Pcd]\r
1a53a034 54 gEfiSecurityPkgTokenSpaceGuid.PcdRsa2048Sha256PublicKeyBuffer ## SOMETIMES_CONSUMES\r
6bb832b3 55\r
1a53a034
MK
56[Protocols]\r
57 gEfiSecurityPolicyProtocolGuid ## SOMETIMES_CONSUMES (Set platform override AUTH status if exist)\r
b3548d32 58\r
1a53a034
MK
59[Guids]\r
60 gEfiCertTypeRsa2048Sha256Guid ## PRODUCES ## UNDEFINED # Specifies RSA 2048 SHA 256 authentication algorithm.\r
6a3dae68 61 gEfiHashAlgorithmSha256Guid ## SOMETIMES_CONSUMES ## UNDEFINED\r
b3548d32 62\r