ASN1Sequence

Implements ASN1Encodable.

Represents an ASN.1 sequence and sequence-of value. While this implements ASN1Encodable, we recommend using ASN1EncodableSequence for encoding sequences instead since it represents sequence as an array of ASN1Encodable.

Constructor

function constructor(elements: ASN1Value[]): this;

Parameters

  • elements

Methods

Properties

interface Properties {
	class: ASN1Class;
	form: ASN1Form;
	tag: number;
	elements: ASN1Value[];
}
  • class
  • type
  • tag
  • elements