Skip to main content
Module

x/jose/index.ts>jwtDecrypt

"JSON Web Almost Everything" - JWA, JWS, JWE, JWT, JWK, JWKS for Node.js, Browser, Cloudflare Workers, Deno, Bun, and other Web-interoperable runtimes.
Extremely Popular
Go to Latest
function jwtDecrypt
import { jwtDecrypt } from "https://deno.land/x/jose@v4.14.4/index.ts";

Verifies the JWT format (to be a JWE Compact format), decrypts the ciphertext, validates the JWT Claims Set.

Parameters

jwt: string | Uint8Array

JSON Web Token value (encoded as JWE).

key: KeyLike | Uint8Array

Private Key or Secret to decrypt and verify the JWT with. See Algorithm Key Requirements.

optional
options: JWTDecryptOptions

JWT Decryption and JWT Claims Set validation options.

Type Parameters

optional
T extends KeyLike = KeyLike

Parameters

jwt: string | Uint8Array

JSON Web Token value (encoded as JWE).

Function resolving Private Key or Secret to decrypt and verify the JWT with. See Algorithm Key Requirements.

optional
options: JWTDecryptOptions

JWT Decryption and JWT Claims Set validation options.