Tpm2Lib.Tpm2.HierarchyChangeAuth C# (CSharp) Method

HierarchyChangeAuth() private method

private HierarchyChangeAuth ( TpmHandle authHandle, byte newAuth ) : void
authHandle TpmHandle
newAuth byte
return void
        public void HierarchyChangeAuth(
            TpmHandle authHandle,
            byte[] newAuth
        )
        {
            Tpm2HierarchyChangeAuthRequest inS = new Tpm2HierarchyChangeAuthRequest();
            inS.authHandle = authHandle;
            inS.newAuth = newAuth;
            TpmStructureBase outSBase;
            DispatchMethod(TpmCc.HierarchyChangeAuth, (TpmStructureBase) inS, typeof(Tpm2HierarchyChangeAuthResponse), out outSBase, 1, 0);
        }
        /// <summary>
Tpm2