Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/faster/vendor/jose/index.ts>JWKParameters

A fast and optimized middleware server with an absurdly small amount of code (300 lines) built on top of Deno's native HTTP APIs with no dependencies. It also has a collection of useful middlewares: log file, serve static, CORS, session, rate limit, token, body parsers, redirect, proxy and handle upload. Fully compatible with Deno Deploy.
Latest
interface JWKParameters
import { type JWKParameters } from "https://deno.land/x/faster@v11.7/vendor/jose/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

JWK "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