Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/jose/jwt/verify.ts>jwtVerify

"JSON Web Almost Everything" - JWA, JWS, JWE, JWT, JWK, JWKS for Node.js, Browser, Cloudflare Workers, Deno, Bun, and other Web-interoperable runtimes.
Extremely Popular
Go to Latest
function jwtVerify
import { jwtVerify } from "https://deno.land/x/jose@v4.13.2/jwt/verify.ts";

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.