blob: 4e3c5f25910818636a9c29d743534ce4b00e4dc8 [file] [log] [blame]
/* GENERATED SOURCE. DO NOT MODIFY. */
package com.android.internal.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.
}