Lines Matching refs:cpHash
1492 2) if policySession→cpHash has been set, it shall match the cpHash of the command
1725 cpHash of the command and rpHash of the response.
5515 would not be possible to include the Name associated with objectHandle in the cpHash computation.
6767 The policy is likely to include cpHash in order to restrict where duplication can occur.
6769 TPM2_PolicyCpHash() has been executed as part of the policy, the policySession→cpHash is compared
6770 to the cpHash of the command.
6796 It is allowed that policySesion→nameHash and policySession→cpHash share the same memory
11810 authorization or audit of this command requires computation of a cpHash and an rpHash, the Name
12097 authorization or audit of this command requires computation of a cpHash and an rpHash, the Name
12440 authorization or audit of this command requires computation of a cpHash and an rpHash, the Name
14183 command. At the end of this command, the audit digest will be extended with cpHash and the rpHash of
16217 commandAuditDigestnew ≔ HauditAlg(commandAuditDigestold || cpHash || rpHash)
16231 cpHash
16239 TPM2_Shutdown() cannot be audited but TPM2_Startup() can be audited. If the cpHash of the
18744 1) the TPM shall return TPM_RC_CPHASH if policySession→cpHash does not have its default
18745 value or the contents of policySession→cpHash are not the same as cpHashA; or
18748 CpHash is the expected cpHash value held in the policy session context.
18856 cpHash – this parameter may only be changed if it contains its initialization value (an Empty Strin…
18857 If cpHash is not the Empty String when a policy command attempts to update it, the TPM will return
19052 This is not the cpHash of this TPM2_PolicySigned() command.
19093 If the cpHashA parameter is not an Empty Buffer, it is copied to policySession→cpHash.
19156 This is not the cpHash for this command but the cpHash
19252 cpHash was previously set to a different value
19281 input cpHash has wrong size
19646 If the cpHashA command parameter is not an Empty Buffer, it is copied to cpHash in the session cont…
19721 This not the cpHash for this command but the cpHash
19805 cpHash for policy was previously set to a value that is not the same
19918 // This value is computed even for trial sessions. Possibly update the cpHash
20042 If the cpHashA command parameter is not an Empty Buffer, it may be copied to cpHash in the session
20171 policy's cpHash was previously set to a different value
20179 timeout or cpHash has invalid size for the
22928 If policySession→cpHash is already set and not the same as cpHashA, then the TPM shall return
22931 If the cpHashA checks succeed, policySession→cpHash
22996 the cpHash added to the policy
23043 cpHash of policySession has previously been set to a different value
23122 // A new cpHash is given in input parameter, but cpHash in session context
23123 // is not empty, or is not the same as the new cpHash
23126 && session->u1.cpHash.t.size != 0
23127 && !Memory2BEqual(&in->cpHashA.b, &session->u1.cpHash.b)
23130 // A valid cpHash must have the same size as session hash digest
23146 // update cpHash in session context
23147 session->u1.cpHash = in->cpHashA;
23198 If policySession→cpHash is already set, the TPM shall return TPM_RC_VALUE. If the size of nameHash
23200 policySession→cpHash is set to nameHash.
23201 If this command completes successfully, the cpHash of the authorized command will not be used for
23214 policySession→cpHash
23412 // A new nameHash is given in input parameter, but cpHash in session context
23414 if(in->nameHash.t.size != 0 && session->u1.cpHash.t.size != 0)
23435 session->u1.cpHash = in->nameHash;
23480 If either policySession→cpHash or policySession→nameHash has been previously set, the TPM shall
23487 It is allowed that policySesion→nameHash and policySession→cpHash share the same memory
23687 cpHash of policySession is not empty
23708 // cpHash in session context must be empty
23709 if(session->u1.cpHash.t.size != 0)
23716 session->u1.cpHash.t.size = CryptStartHash(session->authHashAlg, &hashState);
23722 CryptCompleteHash2B(&hashState, &session->u1.cpHash.b);