import { jwtDecrypt } from "https://dotland.deno.dev/x/jose@v4.15.1/jwt/decrypt.ts";
Verifies the JWT format (to be a JWE Compact format), decrypts the ciphertext, validates the JWT Claims Set.
Parameters
key: KeyLike | Uint8Array
Private Key or Secret to decrypt and verify the JWT with. See Algorithm Key Requirements.
Returns
Promise<JWTDecryptResult>
Parameters
getKey: JWTDecryptGetKey
Function resolving Private Key or Secret to decrypt and verify the JWT with. See Algorithm Key Requirements.
Returns
Promise<JWTDecryptResult & ResolvedKey<T>>