All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bugvm.bouncycastle.asn1.ASN1GeneralizedTime Maven / Gradle / Ivy

There is a newer version: 1.2.9
Show newest version
package com.bugvm.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