import { generalDecrypt } from "https://deno.land/x/jose@v5.9.6/jwe/general/decrypt.ts";
Decrypts a General 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/general/decrypt'
.
Parameters
jwe: GeneralJWE
General JWE.
key: KeyLike | Uint8Array
Private Key or Secret to decrypt the JWE with. See Algorithm Key Requirements.
optional
options: DecryptOptionsJWE Decryption options.
Returns
Promise<GeneralDecryptResult>
Parameters
jwe: GeneralJWE
General JWE.
getKey: GeneralDecryptGetKey
Function resolving Private Key or Secret to decrypt the JWE with. See Algorithm Key Requirements.
optional
options: DecryptOptionsJWE Decryption options.
Returns
Promise<GeneralDecryptResult & ResolvedKey<KeyLikeType>>