ASN1BitString

Implements ASN1Encodable.

Represents an ASN.1 bit string value.

Constructor

function constructor(bytes: Uint8Array, length: number): this;

Parameters

  • bytes: The bit string as bytes
  • length: The size of the string in bits

Methods

Properties

interface Properties {
	class: ASN1Class;
	form: ASN1Form;
	tag: number;
	bytes: Uint8Array;
	length: number;
}
  • class
  • type
  • tag
  • bytes
  • length