Home | History | Annotate | Download | only in asn1
      1 package org.bouncycastle.asn1;
      2 
      3 import java.util.Date;
      4 
      5 /**
      6  * DER UTC time object.
      7  */
      8 public class DERUTCTime
      9     extends ASN1UTCTime
     10 {
     11     DERUTCTime(byte[] bytes)
     12     {
     13         super(bytes);
     14     }
     15 
     16     public DERUTCTime(Date time)
     17     {
     18         super(time);
     19     }
     20 
     21     public DERUTCTime(String time)
     22     {
     23         super(time);
     24     }
     25 
     26     // TODO: create proper DER encoding.
     27 }
     28