mirror of
https://github.com/stefanberger/libtpms
synced 2025-12-27 15:08:24 +00:00
This is the initial import of the libtpms library. The libtpms library provides software emulation of a Trusted Platform Module (TPM). It is intended to be used by applications when a hardware TPM is not adequate. For example, a hypervisor can use libtpms to emulate an independent TPM for each of it's virtual machine guests. The library provides a high- level API for developers to integrate the emulated TPM support into their application. The code was originally written by Kenneth Goldman <kgoldman@us.ibm.com> and Stefan Berger <stefanb@us.ibm.com>. The code is licensed under the Modified BSD License. Signed-off-by: Corey Bryant <coreyb@linux.vnet.ibm.com>
16 lines
264 B
Makefile
16 lines
264 B
Makefile
#
|
|
# include/libtpms/Makefile.am
|
|
#
|
|
# For the license, see the LICENSE file in the root directory.
|
|
#
|
|
|
|
libtpmsincludedir = $(includedir)/libtpms
|
|
|
|
libtpmsinclude_HEADERS = \
|
|
tpm_error.h \
|
|
tpm_library.h \
|
|
tpm_memory.h \
|
|
tpm_nvfilename.h \
|
|
tpm_tis.h \
|
|
tpm_types.h
|