Home | History | Annotate | Download | only in asn1
      1 package org.bouncycastle.asn1;
      2 
      3 import java.util.Date;
      4 
      5 public class ASN1GeneralizedTime
      6     extends DERGeneralizedTime
      7 {
      8     ASN1GeneralizedTime(byte[] bytes)
      9     {
     10         super(bytes);
     11     }
     12 
     13     public ASN1GeneralizedTime(Date time)
     14     {
     15         super(time);
     16     }
     17 
     18     public ASN1GeneralizedTime(String time)
     19     {
     20         super(time);
     21     }
     22 }
     23