Skip to main content
Module

x/jwe_cookie_map/src/deps.ts>jose.jwtVerify

Easy JWE Cookies for Deno
Latest
function jose.jwtVerify
import { jose } from "https://deno.land/x/jwe_cookie_map@v1.0.1/src/deps.ts";
const { jwtVerify } = jose;

Verifies the JWT format (to be a JWS Compact format), verifies the JWS signature, validates the JWT Claims Set.

Parameters

jwt: string | Uint8Array

JSON Web Token value (encoded as JWS).

key: KeyLike | Uint8Array

Key to verify the JWT with. See Algorithm Key Requirements.

optional
options: JWTVerifyOptions

JWT Decryption and JWT Claims Set validation options.

Type Parameters

optional
T extends KeyLike = KeyLike

Parameters

jwt: string | Uint8Array

JSON Web Token value (encoded as JWS).

Function resolving a key to verify the JWT with. See Algorithm Key Requirements.

optional
options: JWTVerifyOptions

JWT Decryption and JWT Claims Set validation options.