/* Optional Composite Hash Algorithm and TPM PCR Composite field is included */
if (this->flags != PTS_SIMPLE_EVID_FINAL_FLAG_NO)
{
- u_int32_t pcr_comp_len;
+ /** u_int32_t pcr_comp_len;*/
u_int32_t tpm_quote_sign_len;
/** TODO: Ignoring Hashing algorithm field
* reader->read_uint16(reader, &algorithm);
* this->comp_hash_algorithm = algorithm;
*/
- reader->read_uint32(reader, &pcr_comp_len);
- reader->read_data(reader, pcr_comp_len, &this->pcr_comp);
- this->pcr_comp = chunk_clone(this->pcr_comp);
+
+ /** TODO: Ignoring PCR Composite field
+ * Which data to send in this field from IMC?
+ * reader->read_uint32(reader, &pcr_comp_len);
+ * reader->read_data(reader, pcr_comp_len, &this->pcr_comp);
+ * this->pcr_comp = chunk_clone(this->pcr_comp);
+ */
+ this->pcr_comp = chunk_empty;
reader->read_uint32(reader, &tpm_quote_sign_len);
reader->read_data(reader, tpm_quote_sign_len, &this->tpm_quote_sign);
this->tpm_quote_sign = chunk_clone(this->tpm_quote_sign);