import { jwtDecrypt } from "https://deno.land/x/jose@v5.9.6/jwt/decrypt.ts";
Verifies the JWT format (to be a JWE Compact format), decrypts the ciphertext, validates the JWT Claims Set.
This function is exported (as a named export) from the main 'jose'
module entry point as well
as from its subpath export 'jose/jwt/decrypt'
.
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>>