Tpm2Lib.Tpm2.PcrSetAuthValue C# (CSharp) Method

PcrSetAuthValue() private method

private PcrSetAuthValue ( TpmHandle pcrHandle, byte auth ) : void
pcrHandle TpmHandle
auth byte
return void
        public void PcrSetAuthValue(
            TpmHandle pcrHandle,
            byte[] auth
        )
        {
            Tpm2PcrSetAuthValueRequest inS = new Tpm2PcrSetAuthValueRequest();
            inS.pcrHandle = pcrHandle;
            inS.auth = auth;
            TpmStructureBase outSBase;
            DispatchMethod(TpmCc.PcrSetAuthValue, (TpmStructureBase) inS, typeof(Tpm2PcrSetAuthValueResponse), out outSBase, 1, 0);
        }
        /// <summary>
Tpm2