Inheritance: TpmStructureBase
コード例 #1
0
ファイル: X_TpmDefs.cs プロジェクト: vishalishere/TSS.MSR
 ///<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;
 }
コード例 #2
0
ファイル: X_TpmDefs.cs プロジェクト: vishalishere/TSS.MSR
 public TimeAttestInfo()
 {
     time = new TimeInfo();
     firmwareVersion = new ulong();
 }
コード例 #3
0
ファイル: X_TpmDefs.cs プロジェクト: vishalishere/TSS.MSR
 public TimeInfo(TimeInfo the_TimeInfo)
 {
     if((Object) the_TimeInfo == null ) throw new ArgumentException(Globs.GetResourceString("parmError"));
     time = the_TimeInfo.time;
     clockInfo = the_TimeInfo.clockInfo;
 }
コード例 #4
0
ファイル: X_TpmDefs.cs プロジェクト: vishalishere/TSS.MSR
 ///<param name = "the_currentTime"></param>
 public Tpm2ReadClockResponse(
 TimeInfo the_currentTime
 )
 {
     this.currentTime = the_currentTime;
 }
コード例 #5
0
ファイル: X_TpmDefs.cs プロジェクト: vishalishere/TSS.MSR
 public Tpm2ReadClockResponse(Tpm2ReadClockResponse the_Tpm2ReadClockResponse)
 {
     if((Object) the_Tpm2ReadClockResponse == null ) throw new ArgumentException(Globs.GetResourceString("parmError"));
     currentTime = the_Tpm2ReadClockResponse.currentTime;
 }
コード例 #6
0
ファイル: X_TpmDefs.cs プロジェクト: vishalishere/TSS.MSR
 public Tpm2ReadClockResponse()
 {
     currentTime = new TimeInfo();
 }