import { jwtDecrypt } from "https://deno.land/x/jose@v5.4.0/jwt/decrypt.ts";
Verifies the JWT format (to be a JWE Compact format), decrypts the ciphertext, validates the JWT Claims Set.
Type Parameters
optional
PayloadType = JWTPayloadParameters
key: KeyLike | Uint8Array
Private Key or Secret to decrypt and verify the JWT with. See Algorithm Key Requirements.
optional
options: JWTDecryptOptionsJWT Decryption and JWT Claims Set validation options.
Returns
Promise<JWTDecryptResult<PayloadType>>
Type Parameters
optional
PayloadType = JWTPayloadParameters
getKey: JWTDecryptGetKey
Function resolving Private Key or Secret to decrypt and verify the JWT with. See Algorithm Key Requirements.
optional
options: JWTDecryptOptionsJWT Decryption and JWT Claims Set validation options.
Returns
Promise<JWTDecryptResult<PayloadType> & ResolvedKey<KeyLikeType>>