2012-11-27 06:16:15 +01:00
|
|
|
## @file
|
2014-08-28 07:31:09 +02:00
|
|
|
# Provides TPM measurement functions for TPM1.2 and TPM 2.0
|
2018-06-27 15:13:09 +02:00
|
|
|
#
|
|
|
|
# This library provides TpmMeasureAndLogData() to measure and log data, and
|
2014-08-28 07:31:09 +02:00
|
|
|
# extend the measurement result into a specific PCR.
|
2012-11-27 06:16:15 +01:00
|
|
|
#
|
2018-06-27 15:13:09 +02:00
|
|
|
# Copyright (c) 2012 - 2018, Intel Corporation. All rights reserved.<BR>
|
2019-04-04 01:06:56 +02:00
|
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
2012-11-27 06:16:15 +01:00
|
|
|
#
|
|
|
|
##
|
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
|
|
|
BASE_NAME = DxeTpmMeasurementLib
|
|
|
|
FILE_GUID = 30930D10-AF5B-4abf-80E6-EB4FFC0AE9D1
|
|
|
|
MODULE_TYPE = UEFI_DRIVER
|
|
|
|
VERSION_STRING = 1.0
|
2018-06-29 05:33:44 +02:00
|
|
|
LIBRARY_CLASS = TpmMeasurementLib|DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SMM_DRIVER UEFI_APPLICATION UEFI_DRIVER
|
2014-08-28 07:31:09 +02:00
|
|
|
MODULE_UNI_FILE = DxeTpmMeasurementLib.uni
|
2012-11-27 06:16:15 +01:00
|
|
|
|
|
|
|
#
|
|
|
|
# The following information is for reference only and not required by the build tools.
|
|
|
|
#
|
2018-06-29 05:33:44 +02:00
|
|
|
# VALID_ARCHITECTURES = IA32 X64
|
2012-11-27 06:16:15 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
[Sources]
|
|
|
|
DxeTpmMeasurementLib.c
|
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
2015-07-01 05:13:02 +02:00
|
|
|
MdeModulePkg/MdeModulePkg.dec
|
2012-11-27 06:16:15 +01:00
|
|
|
SecurityPkg/SecurityPkg.dec
|
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
BaseLib
|
|
|
|
BaseMemoryLib
|
|
|
|
DebugLib
|
|
|
|
MemoryAllocationLib
|
|
|
|
UefiBootServicesTableLib
|
|
|
|
|
|
|
|
[Protocols]
|
2014-08-28 07:31:09 +02:00
|
|
|
gEfiTcgProtocolGuid ## SOMETIMES_CONSUMES
|
2015-08-13 10:24:17 +02:00
|
|
|
gEfiTcg2ProtocolGuid ## SOMETIMES_CONSUMES
|