import { jose } from "https://deno.land/x/jwe_cookie_map@v1.0.0-rc0/deps.ts";
const { flattenedDecrypt } = jose;
Decrypts a Flattened JWE.
Parameters
jwe: FlattenedJWE
Flattened JWE.
key: KeyLike | Uint8Array
Private Key or Secret to decrypt the JWE with. See Algorithm Key Requirements.
optional
options: DecryptOptionsJWE Decryption options.
Returns
Promise<FlattenedDecryptResult>
Parameters
jwe: FlattenedJWE
Flattened JWE.
getKey: FlattenedDecryptGetKey
Function resolving Private Key or Secret to decrypt the JWE with. See Algorithm Key Requirements.
optional
options: DecryptOptionsJWE Decryption options.
Returns
Promise<FlattenedDecryptResult & ResolvedKey<T>>