Skip to main content
Latest
interface jose.InflateFunction
Deprecated
Deprecated

Compression of data SHOULD NOT be done before encryption, because such compressed data often reveals information about the plaintext.

import { type jose } from "https://deno.land/x/jwe_cookie_map@v1.0.1/src/deps.ts";
const { InflateFunction } = jose;

Inflate Raw implementation, e.g. promisified zlib.inflateRaw.

Call Signatures

(input: Uint8Array): Promise<Uint8Array>