Inheritance: TpmStructureBase
Example #1
0
 ///<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;
 }
Example #2
0
 public TimeAttestInfo()
 {
     time = new TimeInfo();
     firmwareVersion = new ulong();
 }
Example #3
0
 public TimeInfo(TimeInfo the_TimeInfo)
 {
     if((Object) the_TimeInfo == null ) throw new ArgumentException(Globs.GetResourceString("parmError"));
     time = the_TimeInfo.time;
     clockInfo = the_TimeInfo.clockInfo;
 }
Example #4
0
 ///<param name = "the_currentTime"></param>
 public Tpm2ReadClockResponse(
 TimeInfo the_currentTime
 )
 {
     this.currentTime = the_currentTime;
 }
Example #5
0
 public Tpm2ReadClockResponse(Tpm2ReadClockResponse the_Tpm2ReadClockResponse)
 {
     if((Object) the_Tpm2ReadClockResponse == null ) throw new ArgumentException(Globs.GetResourceString("parmError"));
     currentTime = the_Tpm2ReadClockResponse.currentTime;
 }
Example #6
0
 public Tpm2ReadClockResponse()
 {
     currentTime = new TimeInfo();
 }