Java org.bouncycastle.asn1 DERApplicationSpecific fields, constructors, methods, implement or subclass

Example usage for Java org.bouncycastle.asn1 DERApplicationSpecific fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.bouncycastle.asn1 DERApplicationSpecific.

The text is from its open source code.

Constructor

DERApplicationSpecific(int tag, byte[] octets)
Create an application specific object from the passed in data.
DERApplicationSpecific(int tag, ASN1Encodable object)
Create an application specific object with a tagging of explicit/constructed.
DERApplicationSpecific(int tagNo, ASN1EncodableVector vec)
Create an application specific object which is marked as constructed
DERApplicationSpecific(boolean isConstructed, int tag, byte[] octets)
DERApplicationSpecific(boolean constructed, int tag, ASN1Encodable object)
Create an application specific object with the tagging style given by the value of constructed.

Method

intgetApplicationTag()
Return the tag number associated with this object,
byte[]getContents()
Return the contents of this object as a byte[]
ASN1PrimitivegetObject()
Return the enclosed object assuming explicit tagging.
ASN1PrimitivegetObject(int derTagNo)
Return the enclosed object assuming implicit tagging.
booleanisConstructed()
Return true if the object is marked as constructed, false otherwise.