tpm2-tss: new package
authorCarlos Santos <casantos@datacom.ind.br>
Fri, 2 Feb 2018 15:56:11 +0000 (13:56 -0200)
committerPeter Korsgaard <peter@korsgaard.com>
Thu, 8 Mar 2018 08:58:02 +0000 (09:58 +0100)
commit7b3bb51809517ea045dedc8544db51fc0515d5b4
treec761b74fcb244af5400465c58585010c950c02d2
parent55ee1bd958885a2f2abe8a2bb07fd0af846e1c1c
tpm2-tss: new package

OSS implementation of the TCG TPM2 Software Stack (TSS2). 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.

Signed-off-by: Carlos Santos <casantos@datacom.ind.br>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
package/Config.in
package/tpm2-tss/Config.in [new file with mode: 0644]
package/tpm2-tss/tpm2-tss.hash [new file with mode: 0644]
package/tpm2-tss/tpm2-tss.mk [new file with mode: 0644]