org.mozilla.jss.asn1
public static class SEQUENCE.OF_Template extends Object implements ASN1Template
MyType ::= SEQUENCE OF Extensiona MyType could be decoded with:
SEQUENCE.OF_Template myTypeTemplate = new SEQUENCE.OF_Template( new
Extension.Template) );
SEQUENCE seq = (SEQUENCE) myTypeTemplate.decode(someInputStream);
The number of Extensions actually decoded could be found
with seq.size().
| Constructor Summary | |
|---|---|
| OF_Template(ASN1Template type) | |
| Method Summary | |
|---|---|
| ASN1Value | decode(InputStream istream)
Decodes a SEQUENCE OF from an input stream. |
| ASN1Value | decode(Tag implicitTag, InputStream istream)
Decodes a SEQUENCE OF with an implicit tag from an input stream. |
| static SEQUENCE.OF_Template | makeOutputlessOFTemplate(ASN1Template type) |
| boolean | tagMatch(Tag tag) |