TLV class

Constructors

  • Initialize TLV object

    Parameters

    • tag: string | number

      Tag

    • value: string | Uint8Array<ArrayBufferLike>

      Value

    Returns TLV

    new TLV('84', '325041592E5359532E4444463031');
    

Properties

byteValue: Uint8Array

Value (as Uint8Array)

childs: TLV[]

Childs

isConstructed: boolean

Is constructed or primitive?

length: number

Length

parent: null | TLV = null

Parent object

size: number

Combined length of tag, length and value field

tag: string

Tag (as hex)

value: string

Value (as hex)

Methods

  • Find tag in childs of main object

    Parameters

    • tag: string | number

      Tag to find

    Returns undefined | TLV

  • Find all tag's in childs of main object

    Parameters

    • tag: string | number

      Tag to find

    Returns TLV[]

  • Encode TLV as Uint8Array

    Returns Uint8Array

  • Encode TLV as string

    Returns string

  • Parse TLV from string or Uint8Array

    Parameters

    • data: string | Uint8Array<ArrayBufferLike>

      Data to parse

    Returns TLV