import { jwtCore } from "https://deno.land/x/dtils@2.2.0/deps.ts";
const { verify } = jwtCore;
Takes jwt, CryptoKey
and VerifyOptions
and returns the Payload
of the
jwt if the jwt is valid. Otherwise it throws an Error
.
import { jwtCore } from "https://deno.land/x/dtils@2.2.0/deps.ts";
const { verify } = jwtCore;
Takes jwt, CryptoKey
and VerifyOptions
and returns the Payload
of the
jwt if the jwt is valid. Otherwise it throws an Error
.