tpm2tss_tpm2data_read - Man Page
tpm2tss_tpm2data_write, tpm2tss_tpm2data_read – read/write TPM2_DATA
Synopsis
#include <tpm2tss.h>
**int tpm2tss_tpm2data_read(const char *filename, TPM2_DATA tpm2Datap);
int tpm2tss_tpm2data_write(const TPM2_DATA tpm2Data, const char filename);
Description
tpm2tss_tpm2data_read reads the TPM2_DATA object from a file called filename
, allocates memory and stores it under the parameter tpm2Datap
. Must be freed using the free()
function.
tpm2tss_tpm2data_write writes the TPM2_DATA object from the parameter tpm2Data
to a newly created file called filename
.
Return Value
Upon successful completion tpm2tss_tpm2data_write() and tpm2tss_tpm2data_read() return 1. Otherwise 0.
Author
Written by Andreas Fuchs.
Copyright
tpm2tss is Copyright (C) 2018 Fraunhofer SIT sponsored by Infineon Technologies AG. License BSD 3-clause.
See Also
Referenced By
The man page tpm2tss_tpm2data_write(3) is an alias of tpm2tss_tpm2data_read(3).