Package org.gudy.bouncycastle.asn1
Class ASN1ObjectParser
- java.lang.Object
-
- org.gudy.bouncycastle.asn1.ASN1ObjectParser
-
public class ASN1ObjectParser extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description private ASN1StreamParser
_aIn
private int
_baseTag
private int
_tagNumber
-
Constructor Summary
Constructors Modifier Constructor Description protected
ASN1ObjectParser(int baseTag, int tagNumber, java.io.InputStream contentStream)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description (package private) int
getBaseTag()
(package private) int
getTagNumber()
Return the tag number for this object.(package private) DEREncodable
readObject()
(package private) ASN1EncodableVector
readVector()
-
-
-
Field Detail
-
_baseTag
private int _baseTag
-
_tagNumber
private int _tagNumber
-
_aIn
private ASN1StreamParser _aIn
-
-
Method Detail
-
getTagNumber
int getTagNumber()
Return the tag number for this object.- Returns:
- the tag number.
-
getBaseTag
int getBaseTag()
-
readObject
DEREncodable readObject() throws java.io.IOException
- Throws:
java.io.IOException
-
readVector
ASN1EncodableVector readVector() throws java.lang.IllegalStateException
- Throws:
java.lang.IllegalStateException
-
-