Tpm2Lib.Tpm2.PcrEvent C# (CSharp) Method

PcrEvent() private method

private PcrEvent ( TpmHandle pcrHandle, byte eventData ) : TpmHash[]
pcrHandle TpmHandle
eventData byte
return TpmHash[]
        public TpmHash[] PcrEvent(
            TpmHandle pcrHandle,
            byte[] eventData
        )
        {
            Tpm2PcrEventRequest inS = new Tpm2PcrEventRequest();
            inS.pcrHandle = pcrHandle;
            inS.eventData = eventData;
            TpmStructureBase outSBase;
            DispatchMethod(TpmCc.PcrEvent, (TpmStructureBase) inS, typeof(Tpm2PcrEventResponse), out outSBase, 1, 0);
            Tpm2PcrEventResponse outS = (Tpm2PcrEventResponse) outSBase;
            return outS.digests;
        }
        /// <summary>
Tpm2