]> git.proxmox.com Git - mirror_edk2.git/blob - SecurityPkg/Pkcs7Verify/Pkcs7VerifyDxe/Pkcs7VerifyDxe.inf
SecurityPkg: Fix few typos
[mirror_edk2.git] / SecurityPkg / Pkcs7Verify / Pkcs7VerifyDxe / Pkcs7VerifyDxe.inf
1 ## @file
2 # Produces the UEFI PKCS7 Verification protocol.
3 #
4 # PKCS7 is a general-purpose Cryptographic Message Syntax Standard (defined by
5 # RFC2315, http://tools.ietf.org/html/rfc2315). This module will produce the
6 # UEFI PKCS7 Verification Protocol which is used to verify data signed using PKCS7
7 # structure.
8 #
9 # Copyright (c) 2015, Intel Corporation. All rights reserved.<BR>
10 # SPDX-License-Identifier: BSD-2-Clause-Patent
11 #
12 ##
13
14 [Defines]
15 INF_VERSION = 0x00010005
16 BASE_NAME = Pkcs7VerifyDxe
17 FILE_GUID = DC952D08-C62B-41c6-BAC7-70ED054F91E5
18 MODULE_TYPE = DXE_DRIVER
19 VERSION_STRING = 1.0
20 ENTRY_POINT = Pkcs7VerifyDriverEntry
21 MODULE_UNI_FILE = Pkcs7VerifyDxe.uni
22
23 #
24 # The following information is for reference only and not required by the build tools.
25 #
26 # VALID_ARCHITECTURES = IA32 X64
27 #
28
29 [Sources.common]
30 Pkcs7VerifyDxe.c
31
32 [Packages]
33 MdePkg/MdePkg.dec
34 CryptoPkg/CryptoPkg.dec
35 SecurityPkg/SecurityPkg.dec
36
37 [LibraryClasses]
38 UefiLib
39 UefiBootServicesTableLib
40 BaseLib
41 BaseMemoryLib
42 MemoryAllocationLib
43 DebugLib
44 UefiDriverEntryPoint
45 BaseCryptLib
46
47 [Protocols]
48 gEfiPkcs7VerifyProtocolGuid ## PRODUCES
49
50 [Guids]
51 gEfiCertX509Guid ## SOMETIMES_CONSUMES ## GUID # Unique ID for the type of the signature.
52 gEfiCertSha1Guid ## SOMETIMES_CONSUMES ## GUID # Unique ID for the type of the signature.
53 gEfiCertSha256Guid ## SOMETIMES_CONSUMES ## GUID # Unique ID for the type of the signature.
54 gEfiCertSha384Guid ## SOMETIMES_CONSUMES ## GUID # Unique ID for the type of the signature.
55 gEfiCertSha512Guid ## SOMETIMES_CONSUMES ## GUID # Unique ID for the type of the signature.
56 gEfiCertX509Sha256Guid ## SOMETIMES_CONSUMES ## GUID # Unique ID for the type of the signature.
57 gEfiCertX509Sha384Guid ## SOMETIMES_CONSUMES ## GUID # Unique ID for the type of the signature.
58 gEfiCertX509Sha512Guid ## SOMETIMES_CONSUMES ## GUID # Unique ID for the type of the signature.
59
60 [Depex]
61 TRUE
62
63 [UserExtensions.TianoCore."ExtraFiles"]
64 Pkcs7VerifyDxeExtra.uni