org.bouncycastle.oer.its.ieee1609dot2.Opaque Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcutil-debug-jdk18on Show documentation
Show all versions of bcutil-debug-jdk18on Show documentation
The Bouncy Castle Java APIs for ASN.1 extension and utility APIs used to support bcpkix and bctls. This jar contains APIs for JDK 1.8 and up.
package org.bouncycastle.oer.its.ieee1609dot2;
import java.io.ByteArrayInputStream;
import java.io.InputStream;
import java.lang.reflect.Method;
import java.security.AccessController;
import java.security.PrivilegedAction;
import org.bouncycastle.asn1.ASN1Encodable;
import org.bouncycastle.asn1.ASN1Object;
import org.bouncycastle.asn1.ASN1OctetString;
import org.bouncycastle.asn1.ASN1Primitive;
import org.bouncycastle.asn1.DEROctetString;
import org.bouncycastle.oer.Element;
import org.bouncycastle.oer.OERInputStream;
import org.bouncycastle.util.Arrays;
public class Opaque
extends ASN1Object
{
private final byte[] content;
public Opaque(byte[] content)
{
this.content = Arrays.clone(content);
}
private Opaque(ASN1OctetString value)
{
this(value.getOctets());
}
public static Opaque getInstance(Object src)
{
if (src instanceof Opaque)
{
return (Opaque)src;
}
if (src != null)
{
return new Opaque(ASN1OctetString.getInstance(src));
}
return null;
}
public ASN1Primitive toASN1Primitive()
{
return new DEROctetString(content);
}
public byte[] getContent()
{
return content;
}
public InputStream getInputStream()
{
return new ByteArrayInputStream(content);
}
public static T getValue(final Class type, final Element definition, final Opaque src)
{
return AccessController.doPrivileged(new PrivilegedAction()
{
public T run()
{
try
{
ASN1Encodable value = OERInputStream.parse(src.content, definition);
Method m = type.getMethod("getInstance", Object.class);
return type.cast(m.invoke(null, value));
}
catch (Exception ex)
{
throw new IllegalStateException("could not invoke getInstance on type " + ex.getMessage(), ex);
}
}
});
}
}