• Home
  • Raw
  • Download

Lines Matching refs:pcrHandle

12446 list. If pcrHandle references a PCR and not TPM_RH_NULL, then the returned digest list is processed…
12447 the same manner as the digest list input parameter to TPM2_PCR_Extend() with the pcrHandle in each
12490 @pcrHandle
12650 if(in->pcrHandle != TPM_RH_NULL)
12653 if(!PCRIsExtendAllowed(in->pcrHandle))
12665 if(gp.orderlyState != SHUTDOWN_NONE && PCRIsStateSaved(in->pcrHandle))
12722 if(in->pcrHandle != TPM_RH_NULL)
12723 PCRExtend(in->pcrHandle, hashAlg,
16620 pcrHandle is Extended into the bank identified by the tag (hashAlg).
16663 pcrHandle
16682 The pcrHandle parameter is allowed to reference TPM_RH_NULL. If so, the input parameters are
16728 @pcrHandle
16835 referenced by pcrHandle
16871 if(in->pcrHandle == TPM_RH_NULL)
16874 if(!PCRIsExtendAllowed(in->pcrHandle))
16878 if(PCRIsStateSaved(in->pcrHandle) && gp.orderlyState != SHUTDOWN_NONE)
16888 PCRExtend(in->pcrHandle, in->digests.digests[i].hashAlg,
16915 …ed PCR has been allocated. After the data is hashed, the digests list is returned. If the pcrHandle
16929 contain a digest for each bank, or it may only contain a digest for each bank in which pcrHandle is…
16933 implemented in the SHA1 bank. If pcrHandle references PCR[22], then digests may contain either a
16973 @pcrHandle
17087 referenced by pcrHandle
17114 if(in->pcrHandle != TPM_RH_NULL)
17117 if(!PCRIsExtendAllowed(in->pcrHandle))
17121 if(PCRIsStateSaved(in->pcrHandle) && gp.orderlyState != SHUTDOWN_NONE)
17139 if(in->pcrHandle != TPM_RH_NULL)
17140 PCRExtend(in->pcrHandle, hash, size,
17844 @pcrHandle
17934 PCR referenced by pcrHandle is not a member of a PCR
17955 if(!PCRBelongsAuthGroup(in->pcrHandle, &groupIndex))
17996 The definition of TPMI_DH_PCR in Part 2 indicates that if pcrHandle is out of the allowed range for
17999 If pcrHandle references a PCR that cannot be reset, the TPM shall return TPM_RC_LOCALITY.
18041 @pcrHandle
18127 by pcrHandle
18145 if(!PCRIsResetAllowed(in->pcrHandle))
18149 if(PCRIsStateSaved(in->pcrHandle) && gp.orderlyState != SHUTDOWN_NONE)
18158 PCRSetValue(in->pcrHandle, 0);
18161 PCRChanged(in->pcrHandle);
18581 pcrHandle;
18597 pcrHandle = PCR_FIRST + DRTM_PCR;
18603 pcrHandle = PCR_FIRST + HCRTM_PCR;
18618 PCRExtend(pcrHandle, hash, digest.t.size, digest.t.buffer);
18620 PcrWrite(pcrHandle, hash, &digest);