import { flattenedDecrypt } from "https://dotland.deno.dev/x/jose@v5.9.6/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
key: KeyLike | Uint8Array
Private Key or Secret to decrypt the JWE with. See Algorithm Key Requirements.
Returns
Promise<FlattenedDecryptResult>
Parameters
getKey: FlattenedDecryptGetKey
Function resolving Private Key or Secret to decrypt the JWE with. See Algorithm Key Requirements.
Returns
Promise<FlattenedDecryptResult & ResolvedKey<KeyLikeType>>