T402 API Reference - v2.9.0
    Preparing search index...

    Interface JWSProtectedHeader

    JWS protected header fields we care about. Additional fields are allowed (and preserved on parse) but are not interpreted by this module.

    interface JWSProtectedHeader {
        alg: string;
        kid?: string;
        typ?: string;
        cty?: string;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown

      Any other parameters.

    Index

    Properties

    Properties

    alg: string

    Signature algorithm. Required per RFC 7515 §4.1.1.

    kid?: string

    Key ID — caller-defined hint for resolveKey. Optional.

    typ?: string

    Media type of the complete JWS. Optional.

    cty?: string

    Media type of the payload. Optional.