Tpm2Lib.Tpm2.PolicyCounterTimer C# (CSharp) 메소드

PolicyCounterTimer() 개인적인 메소드

private PolicyCounterTimer ( TpmHandle policySession, byte operandB, ushort offset, Eo operation ) : void
policySession TpmHandle
operandB byte
offset ushort
operation Eo
리턴 void
        public void PolicyCounterTimer(
            TpmHandle policySession,
            byte[] operandB,
            ushort offset,
            Eo operation
        )
        {
            Tpm2PolicyCounterTimerRequest inS = new Tpm2PolicyCounterTimerRequest();
            inS.policySession = policySession;
            inS.operandB = operandB;
            inS.offset = offset;
            inS.operation = operation;
            TpmStructureBase outSBase;
            DispatchMethod(TpmCc.PolicyCounterTimer, (TpmStructureBase) inS, typeof(Tpm2PolicyCounterTimerResponse), out outSBase, 1, 0);
        }
        /// <summary>

Usage Example

예제 #1
0
 internal override TpmRc Execute(Tpm2 tpm, AuthSession sess, PolicyTree policy)
 {
     tpm.PolicyCounterTimer(sess, OperandB, Offset, Operation);
     return(tpm._GetLastResponseCode());
 }
All Usage Examples Of Tpm2Lib.Tpm2::PolicyCounterTimer
Tpm2