MonoCloud Authentication SDK
    Preparing search index...

    Parameters contained in a JSON Web Signature (JWS) header.

    interface JwsHeaderParameters {
        alg: SecurityAlgorithms;
        crit?: string[];
        jwk?: Jwk;
        kid?: string;
        typ?: string;
    }
    Index

    Properties

    Properties

    The cryptographic algorithm used to sign the token.

    crit?: string[]

    List of header parameters that are marked as critical and must be understood by the token processor.

    jwk?: Jwk

    An embedded JSON Web Key (JWK) containing the signing key.

    kid?: string

    Identifier of the key used to sign the token.

    typ?: string

    The token type.