2018-02-02 16:56:11 +01:00
|
|
|
config BR2_PACKAGE_TPM2_TSS
|
|
|
|
bool "tpm2-tss"
|
2018-11-20 11:14:02 +01:00
|
|
|
depends on !BR2_STATIC_LIBS # dlfcn.h
|
2018-02-02 16:56:11 +01:00
|
|
|
select BR2_PACKAGE_LIBURIPARSER
|
2018-11-16 03:52:15 +01:00
|
|
|
select BR2_PACKAGE_OPENSSL
|
2018-11-21 03:44:37 +01:00
|
|
|
select BR2_PACKAGE_OPENSSL_FORCE_LIBOPENSSL
|
2018-02-02 16:56:11 +01:00
|
|
|
help
|
|
|
|
OSS implementation of the Trusted Computing Group's (TCG) TPM2
|
|
|
|
Software Stack (TSS). This stack consists of the following
|
|
|
|
layers from top to bottom:
|
|
|
|
|
|
|
|
* System API (SAPI) as described in the system level API and
|
|
|
|
TPM command transmission interface specification. This API
|
|
|
|
is a 1-to-1 mapping of the TPM2 commands documented in Part
|
|
|
|
3 of the TPM2 specification. Additionally there are
|
|
|
|
asynchronous versions of each command. These asynchronous
|
|
|
|
variants may be useful for integration into event-driven
|
|
|
|
programming environments. Both the synchronous and
|
|
|
|
asynchronous API are exposed through a single library:
|
2019-03-08 14:27:09 +01:00
|
|
|
libtss2-sys.
|
2018-02-02 16:56:11 +01:00
|
|
|
|
|
|
|
* TPM Command Transmission Interface (TCTI) that is described
|
|
|
|
in the same specification. This API provides a standard
|
|
|
|
interface to transmit / receive TPM command / response
|
|
|
|
buffers. It is expected that any number of libraries
|
|
|
|
implementing the TCTI API will be implemented as a way to
|
|
|
|
abstract various platform specific IPC mechanisms. Currently
|
|
|
|
this repository provides two TCTI implementations:
|
2019-03-08 14:27:09 +01:00
|
|
|
libtss2-tcti-device and libtss2-tcti-mssim. The prior should
|
|
|
|
be used for direct access to the TPM through the Linux
|
|
|
|
kernel driver. The later implements the protocol exposed by
|
|
|
|
the Microsoft software TPM2 simulator.
|
2018-02-02 16:56:11 +01:00
|
|
|
|
|
|
|
https://github.com/tpm2-software/tpm2-tss
|
2018-11-20 11:14:02 +01:00
|
|
|
|
|
|
|
comment "tpm2-tss needs a toolchain w/ dynamic library"
|
|
|
|
depends on BR2_STATIC_LIBS
|