aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/main/j2me/org/spongycastle/asn1/ASN1GeneralizedTime.java
blob: 0fa3440a7c62a90eeae7965bd8c35393430b89e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package org.spongycastle.asn1;

import java.util.Date;

public class ASN1GeneralizedTime
    extends DERGeneralizedTime
{
    ASN1GeneralizedTime(byte[] bytes)
    {
        super(bytes);
    }

    public ASN1GeneralizedTime(Date date)
    {
        super(date);
    }

    public ASN1GeneralizedTime(Date date, boolean includeMillis)
    {
        super(date, includeMillis);
    }

    public ASN1GeneralizedTime(String time)
    {
        super(time);
    }
}