Beispiel #1
0
 public void addCRLEntry(DERInteger userCertificate, DERUTCTime revocationDate, int reason)
 {
     addCRLEntry(userCertificate, new Time(revocationDate), reason);
 }
Beispiel #2
0
 public void setNextUpdate(
     DERUTCTime nextUpdate)
 {
     this.nextUpdate = new Time(nextUpdate);
 }
Beispiel #3
0
 public void setEndDate(
     DERUTCTime endDate)
 {
     this.endDate = new Time(endDate);
 }
Beispiel #4
0
 public void setThisUpdate(
     DERUTCTime thisUpdate)
 {
     this.thisUpdate = new Time(thisUpdate);
 }
Beispiel #5
0
 public void setStartDate(
     DERUTCTime startDate)
 {
     this.startDate = new Time(startDate);
 }