Module

x/jose/index.ts>compactDecrypt

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

Decrypts a Compact JWE.

This function is exported (as a named export) from the main 'jose' module entry point as well as from its subpath export 'jose/jwe/compact/decrypt'.

Parameters

jwe: string | Uint8Array

Compact JWE.

key: KeyLike | Uint8Array

Private Key or Secret to decrypt the JWE with. See Algorithm Key Requirements.

optional
options: DecryptOptions

JWE Decryption options.

Type Parameters

optional
KeyLikeType extends KeyLike = KeyLike

Parameters

jwe: string | Uint8Array

Compact JWE.

Function resolving Private Key or Secret to decrypt the JWE with. See Algorithm Key Requirements.

optional
options: DecryptOptions

JWE Decryption options.