Tpm2Lib.Tpm2.VendorTcgTest C# (CSharp) Method

VendorTcgTest() private method

private VendorTcgTest ( byte inputData ) : byte[]
inputData byte
return byte[]
        public byte[] VendorTcgTest(
            byte[] inputData
        )
        {
            Tpm2VendorTcgTestRequest inS = new Tpm2VendorTcgTestRequest();
            inS.inputData = inputData;
            TpmStructureBase outSBase;
            DispatchMethod(TpmCc.VendorTcgTest, (TpmStructureBase) inS, typeof(Tpm2VendorTcgTestResponse), out outSBase, 0, 0);
            Tpm2VendorTcgTestResponse outS = (Tpm2VendorTcgTestResponse) outSBase;
            return outS.outputData;
        }
    }
Tpm2