Auth0 Node.js SDK - v5.2.0
    Preparing search index...

    Interface CustomSigningKeyJwk

    JWK representing a custom public signing key.

    interface CustomSigningKeyJwk {
        kty: Management.CustomSigningKeyTypeEnum;
        kid?: string;
        use?: "sig";
        key_ops?: "verify"[];
        alg?: Management.CustomSigningKeyAlgorithmEnum;
        n?: string;
        e?: string;
        crv?: Management.CustomSigningKeyCurveEnum;
        x?: string;
        y?: string;
        x5u?: string;
        x5c?: string[];
        x5t?: string;
        "x5t#S256"?: string;
    }
    Index

    Properties

    kid?: string

    Key identifier

    use?: "sig"
    key_ops?: "verify"[]

    Key operations

    n?: string

    Key modulus

    e?: string

    Key exponent

    x?: string

    X coordinate

    y?: string

    Y coordinate

    x5u?: string

    X.509 URL

    x5c?: string[]

    X.509 certificate chain

    x5t?: string

    X.509 certificate SHA-1 thumbprint

    "x5t#S256"?: string

    X.509 certificate SHA-256 thumbprint