blob: b4de8aed9135aaac2f9f48fe2a92892de5e873ec [file] [log] [blame]
/* GENERATED SOURCE. DO NOT MODIFY. */
package com.android.org.bouncycastle.asn1;
import java.io.IOException;
/**
* An ASN.1 DER NULL object.
* <p>
* Preferably use the constant: DERNull.INSTANCE.
* @hide This class is not part of the Android public SDK API
*/
public class DERNull
extends ASN1Null
{
@android.compat.annotation.UnsupportedAppUsage
public static final DERNull INSTANCE = new DERNull();
private static final byte[] zeroBytes = new byte[0];
private DERNull()
{
}
boolean isConstructed()
{
return false;
}
int encodedLength()
{
return 2;
}
void encode(ASN1OutputStream out, boolean withTag) throws IOException
{
out.writeEncoded(withTag, BERTags.NULL, zeroBytes);
}
}