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# This program and the accompanying materials 11# are licensed and made available under the terms and conditions of the BSD License 12# which accompanies this distribution. The full text of the license may be found at 13# http://opensource.org/licenses/bsd-license.php 14# 15# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 16# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 17# 18## 19 20[Defines] 21 INF_VERSION = 0x00010005 22 BASE_NAME = Pkcs7VerifyDxe 23 FILE_GUID = DC952D08-C62B-41c6-BAC7-70ED054F91E5 24 MODULE_TYPE = DXE_DRIVER 25 VERSION_STRING = 1.0 26 ENTRY_POINT = Pkcs7VerifyDriverEntry 27 MODULE_UNI_FILE = Pkcs7VerifyDxe.uni 28 29# 30# The following information is for reference only and not required by the build tools. 31# 32# VALID_ARCHITECTURES = IA32 X64 33# 34 35[Sources.common] 36 Pkcs7VerifyDxe.c 37 38[Packages] 39 MdePkg/MdePkg.dec 40 CryptoPkg/CryptoPkg.dec 41 SecurityPkg/SecurityPkg.dec 42 43[LibraryClasses] 44 UefiLib 45 UefiBootServicesTableLib 46 BaseLib 47 BaseMemoryLib 48 MemoryAllocationLib 49 DebugLib 50 UefiDriverEntryPoint 51 BaseCryptLib 52 53[Protocols] 54 gEfiPkcs7VerifyProtocolGuid ## PRODUCES 55 56[Guids] 57 gEfiCertX509Guid ## SOMETIMES_CONSUMES ## GUID # Unique ID for the type of the signature. 58 gEfiCertSha1Guid ## SOMETIMES_CONSUMES ## GUID # Unique ID for the type of the signature. 59 gEfiCertSha256Guid ## SOMETIMES_CONSUMES ## GUID # Unique ID for the type of the signature. 60 gEfiCertSha384Guid ## SOMETIMES_CONSUMES ## GUID # Unique ID for the type of the signature. 61 gEfiCertSha512Guid ## SOMETIMES_CONSUMES ## GUID # Unique ID for the type of the signature. 62 gEfiCertX509Sha256Guid ## SOMETIMES_CONSUMES ## GUID # Unique ID for the type of the signature. 63 gEfiCertX509Sha384Guid ## SOMETIMES_CONSUMES ## GUID # Unique ID for the type of the signature. 64 gEfiCertX509Sha512Guid ## SOMETIMES_CONSUMES ## GUID # Unique ID for the type of the signature. 65 66[Depex] 67 TRUE 68 69[UserExtensions.TianoCore."ExtraFiles"] 70 Pkcs7VerifyDxeExtra.uni 71