blob: 3f4de4b518024b0882e8ea9da2842ad0a18ed54b [file] [log] [blame]
/* GENERATED SOURCE. DO NOT MODIFY. */
package com.android.org.bouncycastle.asn1;
import java.util.Date;
/**
* DER UTC time object.
* @hide This class is not part of the Android public SDK API
*/
public class DERUTCTime
extends ASN1UTCTime
{
DERUTCTime(byte[] bytes)
{
super(bytes);
}
public DERUTCTime(Date time)
{
super(time);
}
public DERUTCTime(String time)
{
super(time);
}
// TODO: create proper DER encoding.
}