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(ByteSequence sequence) | 
 Returns an ASN.1 reader whose source is the provided byte sequence and
 having an unlimited maximum BER element size. 
 | 
static Asn1Reader | 
Asn1.getReader(ByteSequence sequence,
         int maxElementSize) | 
 Returns an ASN.1 reader whose source is the provided byte sequence and
 having a user defined maximum BER element size. 
 | 
static Asn1Reader | 
Asn1.getReader(ByteSequenceReader reader) | 
 Returns an ASN.1 reader whose source is the provided byte sequence reader
 and having an unlimited maximum BER element size. 
 | 
static Asn1Reader | 
Asn1.getReader(ByteSequenceReader reader,
         int maxElementSize) | 
 Returns an ASN.1 reader whose source is the provided byte sequence reader
 and having a user defined maximum BER element size. 
 | 
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. 
 |