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