com.bouncycastle.asn1.ASN1GeneralizedTime Maven / Gradle / Ivy
The newest version!
package com.bouncycastle.asn1;
import java.util.Date;
public class ASN1GeneralizedTime
extends DERGeneralizedTime
{
ASN1GeneralizedTime(byte[] bytes)
{
super(bytes);
}
public ASN1GeneralizedTime(Date time)
{
super(time);
}
public ASN1GeneralizedTime(String time)
{
super(time);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy