1## @file 2# Provides some TPM 2.0 commands 3# 4# This library is used by other modules to send TPM 2.0 command. 5# 6# Copyright (c) 2013 - 2014, Intel Corporation. All rights reserved.<BR> 7# This program and the accompanying materials 8# are licensed and made available under the terms and conditions of the BSD License 9# which accompanies this distribution. The full text of the license may be found at 10# http://opensource.org/licenses/bsd-license.php 11# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 12# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 13# 14## 15 16[Defines] 17 INF_VERSION = 0x00010005 18 BASE_NAME = Tpm2CommandLib 19 MODULE_UNI_FILE = Tpm2CommandLib.uni 20 FILE_GUID = 2F572F32-8BE5-4868-BD1D-7438AD97DC27 21 MODULE_TYPE = BASE 22 VERSION_STRING = 1.0 23 LIBRARY_CLASS = Tpm2CommandLib 24 25# 26# The following information is for reference only and not required by the build tools. 27# 28# VALID_ARCHITECTURES = IA32 X64 IPF 29# 30 31[Sources] 32 Tpm2Capability.c 33 Tpm2Sequences.c 34 Tpm2Integrity.c 35 Tpm2Hierarchy.c 36 Tpm2NVStorage.c 37 Tpm2Startup.c 38 Tpm2Session.c 39 Tpm2Context.c 40 Tpm2EnhancedAuthorization.c 41 Tpm2Test.c 42 Tpm2DictionaryAttack.c 43 Tpm2Miscellaneous.c 44 Tpm2Help.c 45 46[Packages] 47 MdePkg/MdePkg.dec 48 SecurityPkg/SecurityPkg.dec 49 50[LibraryClasses] 51 BaseLib 52 BaseMemoryLib 53 DebugLib 54 Tpm2DeviceLib 55