• Home
  • History
  • Annotate
  • Raw
  • Download

Lines Matching refs:cpHash

954       2) if policySession→cpHash has been set, it shall match the cpHash of the command
1098 cpHash of the command and rpHash of the response.
3370 … would not be possible to include the Name associated with objectHandle in the cpHash computation.
4050 The policy is likely to include cpHash in order to restrict where duplication can occur. If
4051 TPM2_PolicyCpHash() has been executed as part of the policy, the policySession→cpHash is compared
4052 to the cpHash of the command.
4058 NOTE 2 It is allowed that policySesion→nameHash and policySession→cpHash share the same me…
6734 authorization or audit of this command requires computation of a cpHash and an rpHash, the Name
6897 authorization or audit of this command requires computation of a cpHash and an rpHash, the Name
7080 authorization or audit of this command requires computation of a cpHash and an rpHash, the Name
8020 command. At the end of this command, the audit digest will be extended with cpHash and the rpHash of
9055 … commandAuditDigestnew ≔ HauditAlg(commandAuditDigestold || cpHash || rpHash) (5)
9059 cpHash the command parameter hash
9065 TPM2_Shutdown() cannot be audited but TPM2_Startup() can be audited. If the cpHash of the
10526 1) the TPM shall return TPM_RC_CPHASH if policySession→cpHash is set and the contents of
10527 policySession→cpHash are not the same as cpHashA; or
10529 NOTE 3 cpHash is the expected cpHash value held in the policy session context.
10585 … cpHash – this parameter may only be changed if it contains its initialization value (an Empty
10586 … String). If cpHash is not the Empty String when a policy command attempts to update it, the TPM
10708 NOTE 3 This is not the cpHash of this TPM2_PolicySigned() command.
10772 TPM2B_DIGEST cpHashA This is not the cpHash for this command but the cpHash
10825 TPM_RC_CPHASH cpHash was previously set to a different value
10833 TPM_RC_SIZE input cpHash has wrong size
11044 …_DIGEST cpHashA This not the cpHash for this command but the cpHash
11093 … TPM_RC_CPHASH cpHash for policy was previously set to a value that is not the same
11141 44 // This value is computed even for trial sessions. Possibly update the cpHash
11281 TPM_RC_CPHASH policy's cpHash was previously set to a different value
11283 TPM_RC_SIZE timeout or cpHash has invalid size for the
12732 If policySession→cpHash is already set and not the same as cpHashA, then the TPM shall return
12735 If the cpHashA checks succeed, policySession→cpHash is set to cpHashA a…
12763 TPM2B_DIGEST cpHashA the cpHash added to the policy
12791 …TPM_RC_CPHASH cpHash of policySession has previously been set to a different v…
12809 18 // A new cpHash is given in input parameter, but cpHash in session context
12810 19 // is not empty, or is not the same as the new cpHash
12812 21 && session->u1.cpHash.t.size != 0
12813 22 && !Memory2BEqual(&in->cpHashA.b, &session->u1.cpHash.b)
12817 26 // A valid cpHash must have the same size as session hash digest
12840 49 // update cpHash in session context
12841 50 session->u1.cpHash = in->cpHashA;
12876 If policySession→cpHash is already set, the TPM shall return TPM_RC_VALUE. If the size of nameHash
12878 policySession→cpHash is set to nameHash.
12879 If this command completes successfully, the cpHash of the authorized command will not be used for
12882 NOTE 1 This allows the space normally used to hold policySession→cpHash to …
12960 18 // A new nameHash is given in input parameter, but cpHash in session context
12962 20 if(in->nameHash.t.size != 0 && session->u1.cpHash.t.size != 0)
12992 50 session->u1.cpHash = in->nameHash;
13034 If either policySession→cpHash or policySession→nameHash has been previously set, the TPM shall
13038 NOTE 3 It is allowed that policySesion→nameHash and policySession→cpHash share the same …
13049 NOTE 4 policySession→cpHash receives the digest of both Names so that the check performe…
13117 TPM_RC_CPHASH cpHash of policySession is not empty
13133 18 // cpHash in session context must be empty
13134 19 if(session->u1.cpHash.t.size != 0)
13144 29 session->u1.cpHash.t.size = CryptStartHash(session->authHashAlg, &hashState);
13153 38 CryptCompleteHash2B(&hashState, &session->u1.cpHash.b);