JSON Web Key (JWK) representation.

interface JwkKey {
    alg: string;
    e: string;
    kid: string;
    kty: string;
    n: string;
    use: string;
}

Properties

Properties

alg: string
e: string
kid: string
kty: string
n: string
use: string