org.bouncycastle.asn1
Class BERApplicationSpecific
java.lang.Object
|
+--org.bouncycastle.asn1.ASN1Object
|
+--org.bouncycastle.asn1.ASN1Primitive
|
+--org.bouncycastle.asn1.ASN1TaggedObject
|
+--org.bouncycastle.asn1.ASN1ApplicationSpecific
|
+--org.bouncycastle.asn1.BERApplicationSpecific
- All Implemented Interfaces:
- ASN1ApplicationSpecificParser, ASN1Encodable, ASN1TaggedObjectParser, Encodable, InMemoryRepresentable
Deprecated. Will be removed. See comments for
ASN1ApplicationSpecific
.
- public class BERApplicationSpecific
- extends ASN1ApplicationSpecific
An indefinite-length encoding version of an ASN.1 ApplicationSpecific object.
Methods inherited from class org.bouncycastle.asn1.ASN1ApplicationSpecific |
getApplicationTag, getContents, getEnclosedObject, getInstance, getObject, getObjectParser, getTaggedObject, hasApplicationTag, hasContextTag, isConstructed, parseBaseUniversal, parseExplicitBaseObject, parseExplicitBaseTagged, parseImplicitBaseTagged, readObject |
Methods inherited from class org.bouncycastle.asn1.ASN1TaggedObject |
getBaseObject, getBaseUniversal, getExplicitBaseObject, getExplicitBaseTagged, getImplicitBaseTagged, getInstance, getLoadedObject, getObject, getTagClass, getTagNo, hashCode, hasTag, isExplicit, toString |
Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
BERApplicationSpecific
public BERApplicationSpecific(int tagNo,
ASN1Encodable baseEncodable)
throws java.io.IOException
- Deprecated.
- Create an application specific object with an explicit tag
- Parameters:
tagNo
- the tag number for this object.baseEncodable
- the object to be contained.
BERApplicationSpecific
public BERApplicationSpecific(boolean explicit,
int tagNo,
ASN1Encodable baseEncodable)
throws java.io.IOException
- Deprecated.
- Create an application specific object with the tagging style given by the value of explicit.
- Parameters:
explicit
- true if the object is explicitly tagged.tagNo
- the tag number for this object.baseEncodable
- the object to be contained.
BERApplicationSpecific
public BERApplicationSpecific(int tagNo,
ASN1EncodableVector contentsElements)
- Deprecated.
- Create an application specific object which is marked as constructed
- Parameters:
tagNo
- the tag number for this object.contentsElements
- the objects making up the application specific object.