static Asn1Reader |
Asn1.getReader(byte[] array) |
Returns an ASN.1 reader whose source is the provided byte array and
having an unlimited maximum BER element size.
|
static Asn1Reader |
Asn1.getReader(byte[] array,
int maxElementSize) |
Returns an ASN.1 reader whose source is the provided byte array and
having a user defined maximum BER element size.
|
static Asn1Reader |
Asn1.getReader(InputStream stream) |
Returns an ASN.1 reader whose source is the provided input stream and
having an unlimited maximum BER element size.
|
static Asn1Reader |
Asn1.getReader(InputStream stream,
int maxElementSize) |
Returns an ASN.1 reader whose source is the provided input stream and
having a user defined maximum BER element size.
|
static Asn1Reader |
Asn1.getReader(ByteString bytes) |
Returns an ASN.1 reader whose source is the provided byte string and
having an unlimited maximum BER element size.
|
static Asn1Reader |
Asn1.getReader(ByteString bytes,
int maxElementSize) |
Returns an ASN.1 reader whose source is the provided byte string and
having a user defined maximum BER element size.
|
static Asn1Reader |
Asn1.getReader(ByteStringReader reader) |
Returns an ASN.1 reader whose source is the provided byte string reader
and having an unlimited maximum BER element size.
|
static Asn1Reader |
Asn1.getReader(ByteStringReader reader,
int maxElementSize) |
Returns an ASN.1 reader whose source is the provided byte string reader
and having a user defined maximum BER element size.
|
Asn1Reader |
Asn1Reader.readExplicitTag() |
Reads the next element as an explicit tag ignoring the ASN.1 type tag.
|
Asn1Reader |
Asn1Reader.readExplicitTag(byte type) |
Reads the next element as an explicit tag having the provided tag type.
|
Asn1Reader |
Asn1Reader.readExplicitTag(long type) |
|
Asn1Reader |
Asn1Reader.readSequence() |
Reads the next element as a sequence having the Universal Sequence ASN.1 type tag.
|
Asn1Reader |
Asn1Reader.readSequence(byte type) |
Reads the next element as a sequence having the provided type tag.
|
Asn1Reader |
Asn1Reader.readSet() |
Reads the next element as a set having the Universal Set ASN.1 type tag.
|
Asn1Reader |
Asn1Reader.readSet(byte type) |
Reads the next element as a set having the provided type tag.
|
Asn1Reader |
Asn1Reader.skipElement() |
Skips the next element without decoding it.
|
Asn1Reader |
Asn1Reader.skipElement(byte type) |
Skips the next element having the provided type tag without decoding it.
|