Type Alias JWK

JSON Web Key (JWK) for the public key used to verify the signature of a client assertion JWT

type JWK = {
    alg: "RS256" | "RS512" | "ES384";
    crv?: string;
    e?: string;
    kid: string;
    kty: "RSA" | "EC";
    n?: string;
    use: "sig";
    x?: string;
    y?: string;
}
Index

Properties

Properties

alg: "RS256" | "RS512" | "ES384"

Algorithm intended for use with the key

crv?: string
e?: string
kid: string
kty: "RSA" | "EC"
n?: string
use: "sig"
x?: string
y?: string