import { flattenedDecrypt } from "https://deno.land/x/faster@v11.7/vendor/jose/jwe/flattened/decrypt.ts";
Decrypts a Flattened 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/flattened/decrypt'
.
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<KeyLikeType>>