import { compactDecrypt } from "https://deno.land/x/jose@v4.14.4/jwe/compact/decrypt.ts";
Decrypts a Compact JWE.
Parameters
key: KeyLike | Uint8Array
Private Key or Secret to decrypt the JWE with. See Algorithm Key Requirements.
optional
options: DecryptOptionsJWE Decryption options.
Returns
Promise<CompactDecryptResult>
Parameters
getKey: CompactDecryptGetKey
Function resolving Private Key or Secret to decrypt the JWE with. See Algorithm Key Requirements.
optional
options: DecryptOptionsJWE Decryption options.
Returns
Promise<CompactDecryptResult & ResolvedKey<T>>