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

PolicyAuthValue() 개인적인 메소드

private PolicyAuthValue ( TpmHandle policySession ) : void
policySession TpmHandle
리턴 void
        public void PolicyAuthValue(
            TpmHandle policySession
        )
        {
            Tpm2PolicyAuthValueRequest inS = new Tpm2PolicyAuthValueRequest();
            inS.policySession = policySession;
            TpmStructureBase outSBase;
            DispatchMethod(TpmCc.PolicyAuthValue, (TpmStructureBase) inS, typeof(Tpm2PolicyAuthValueResponse), out outSBase, 1, 0);
        }
        /// <summary>

Usage Example

예제 #1
0
 // ReSharper disable once InconsistentNaming
 internal override TpmRc Execute(Tpm2 tpm, AuthSession authSession, PolicyTree policy)
 {
     tpm.PolicyAuthValue(authSession);
     authSession.SessIncludesAuth = true;
     return tpm._GetLastResponseCode();
 }
All Usage Examples Of Tpm2Lib.Tpm2::PolicyAuthValue
Tpm2