Represents a signature that is either valid or that could not be decoded.

Constructors

Accessors

  • get invalidSignatureSource(): null | string
  • The base64 encoded string that is claimed to contain a signature but could not be decoded, if any.

    Returns null | string

  • get isInvalid(): boolean
  • Check whether the signature could not be successfully decoded.

    Returns boolean

  • get isValid(): boolean
  • Check whether the signature has been successfully decoded.

    Returns boolean

  • get signature(): null | Signature
  • The signature, if successfully decoded.

    Returns null | Signature