mirror of
https://github.com/stefanberger/libtpms
synced 2025-08-26 22:07:44 +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>
46 lines
897 B
Plaintext
46 lines
897 B
Plaintext
=head1 NAME
|
|
|
|
TPMLIB_VolatileAll_Store - store all volatile state of the TPM in a buffer
|
|
|
|
=head1 LIBRARY
|
|
|
|
TPM library (libtpms, -ltpms)
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
B<#include <libtpms/tpm_library.h>>
|
|
|
|
B<#include <libtpms/tpm_error.h>>
|
|
|
|
B<TPM_RESULT TPMLIB_VolatileAll_Store(unsigned char **buffer,
|
|
uint32_t *buflen);>
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
The B<TPMLIB_VolatileAll_Store()> function is used to get the volatile
|
|
state of the TPM. The function will allocate a I<buffer> and return
|
|
the number of bytes of state information in the I<buflen> variable.
|
|
|
|
=head1 ERRORS
|
|
|
|
=over 4
|
|
|
|
=item B<TPM_SUCCESS>
|
|
|
|
The function completed sucessfully.
|
|
|
|
=item B<TPM_FAIL>
|
|
|
|
General failure.
|
|
|
|
=back
|
|
|
|
For a complete list of TPM error codes please consult the include file
|
|
B<libtpms/tpm_error.h>
|
|
|
|
=head1 SEE ALSO
|
|
|
|
B<TPMLIB_MainInit>(3), B<TPMLIB_Terminate>(3), B<TPMLIB_RegisterCallbacks>(3)
|
|
|
|
=cut
|