///<param name = "the_time">the Time, Clock, resetCount, restartCount, and Safe indicator</param> ///<param name = "the_firmwareVersion">a TPM vendor-specific value indicating the version number of the firmware</param> public TimeAttestInfo( TimeInfo the_time, ulong the_firmwareVersion ) { this.time = the_time; this.firmwareVersion = the_firmwareVersion; }
public TimeAttestInfo() { time = new TimeInfo(); firmwareVersion = new ulong(); }
public TimeInfo(TimeInfo the_TimeInfo) { if((Object) the_TimeInfo == null ) throw new ArgumentException(Globs.GetResourceString("parmError")); time = the_TimeInfo.time; clockInfo = the_TimeInfo.clockInfo; }
///<param name = "the_currentTime"></param> public Tpm2ReadClockResponse( TimeInfo the_currentTime ) { this.currentTime = the_currentTime; }
public Tpm2ReadClockResponse(Tpm2ReadClockResponse the_Tpm2ReadClockResponse) { if((Object) the_Tpm2ReadClockResponse == null ) throw new ArgumentException(Globs.GetResourceString("parmError")); currentTime = the_Tpm2ReadClockResponse.currentTime; }
public Tpm2ReadClockResponse() { currentTime = new TimeInfo(); }