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

VendorTcgTest() 개인적인 메소드

private VendorTcgTest ( byte inputData ) : byte[]
inputData byte
리턴 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