Module

x/jose/index.ts>JWKParameters

JWA, JWS, JWE, JWT, JWK, JWKS for Node.js, Browser, Cloudflare Workers, Deno, Bun, and other Web-interoperable runtimes.
Extremely Popular
Latest
interface JWKParameters
import { type JWKParameters } from "https://dotland.deno.dev/x/jose@v5.9.2/index.ts";

Generic JSON Web Key Parameters.

Properties

kty: string

JWK "kty" (Key Type) Parameter.

optional
alg: string

JWK "alg" (Algorithm) Parameter.

optional
key_ops: string[]

JWK "key_ops" (Key Operations) Parameter.

optional
ext: boolean

JWK "ext" (Extractable) Parameter.

optional
use: string

JWK "use" (Public Key Use) Parameter.

optional
x5c: string[]

JWK "x5c" (X.509 Certificate Chain) Parameter.

optional
x5t: string

JWK "x5t" (X.509 Certificate SHA-1 Thumbprint) Parameter.

optional
x5t#S256: string

"x5t#S256" (X.509 Certificate SHA-256 Thumbprint) Parameter.

optional
x5u: string

JWK "x5u" (X.509 URL) Parameter.

optional
kid: string

JWK "kid" (Key ID) Parameter.