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

import java.util.Date;

public class ASN1UTCTime
    extends DERUTCTime
{
    ASN1UTCTime(byte[] bytes)
    {
        super(bytes);
    }

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

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