fcc9232b0c
- Drop C++ requirement (tmp2-tss is pure C now). - Add explicit dependency on openssl (gnutls can be used too but this option will be added by a subsequent patch). - Drop the patch on tcti_socket.cpp, which is not applicable. - Add a patch already submitted upstream to support using libressl[1]. - Update LICENSE hash. The terms are is still BSD-2-Clause but the file now contains a SPDX license identifier. 1. https://github.com/tpm2-software/tpm2-tss/pull/1207 Signed-off-by: Carlos Santos <casantos@datacom.com.br> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
33 lines
1.4 KiB
Plaintext
33 lines
1.4 KiB
Plaintext
config BR2_PACKAGE_TPM2_TSS
|
|
bool "tpm2-tss"
|
|
select BR2_PACKAGE_LIBURIPARSER
|
|
select BR2_PACKAGE_OPENSSL
|
|
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:
|
|
libsapi.
|
|
|
|
* 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:
|
|
libtcti-device and libtcti-socket. 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.
|
|
|
|
https://github.com/tpm2-software/tpm2-tss
|