import { compactDecrypt } from "https://deno.land/x/faster@v11.7/vendor/jose/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
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<KeyLikeType>>