Example #1
0
 public void AddCrlEntry(DerInteger userCertificate, Time revocationDate, int reason)
 {
     AddCrlEntry(userCertificate, revocationDate, reason, null);
 }
Example #2
0
 public void SetThisUpdate(
     Time thisUpdate)
 {
     this.thisUpdate = thisUpdate;
 }
Example #3
0
 public void SetNextUpdate(
     Time nextUpdate)
 {
     this.nextUpdate = nextUpdate;
 }
Example #4
0
 public void SetThisUpdate(
     DerUtcTime thisUpdate)
 {
     this.thisUpdate = new Time(thisUpdate);
 }