Implemented functions for reading and extending TPM PCR
Made hash_file function a member of pts object
This commit is contained in:
committed by
Andreas Steffen
parent
b10465fdc1
commit
09f34eb4d0
@@ -361,6 +361,34 @@ struct pts_t {
|
|||||||
*/
|
*/
|
||||||
bool (*verify_quote_signature)(pts_t *this, chunk_t data, chunk_t signature);
|
bool (*verify_quote_signature)(pts_t *this, chunk_t data, chunk_t signature);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reads given PCR value and returns it
|
||||||
|
*
|
||||||
|
* @param pcr_num Number of PCR to read
|
||||||
|
* @param pcr_value Chunk to save pcr read output
|
||||||
|
* @return NULL in case of TSS error, PCR value otherwise
|
||||||
|
*/
|
||||||
|
bool (*read_pcr)(pts_t *this, u_int32_t pcr_num, chunk_t *pcr_value);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Extends given PCR with given value
|
||||||
|
*
|
||||||
|
* @param pcr_num Number of PCR to extend
|
||||||
|
* @param input Value to extend
|
||||||
|
* @param output Chunk to save PCR value after extension
|
||||||
|
* @return FALSE in case of TSS error, TRUE otherwise
|
||||||
|
*/
|
||||||
|
bool (*extend_pcr)(pts_t *this, u_int32_t pcr_num, chunk_t input, chunk_t *output);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Quote over PCR's
|
||||||
|
*
|
||||||
|
* @param pcrs Set of PCR's to make quotation over
|
||||||
|
* @param quote Chunk to save quote operation output
|
||||||
|
* @return FALSE in case of TSS error, TRUE otherwise
|
||||||
|
*/
|
||||||
|
bool (*quote_tpm)(pts_t *this, u_int32_t pcrs, chunk_t *quote);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Destroys a pts_t object.
|
* Destroys a pts_t object.
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user