Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Algorithm

import type { Algorithm } from "https://raw.githubusercontent.com/timonson/djwt/master/algorithm.ts";
type Algorithm =
| "HS256"
| "HS384"
| "HS512"
| "PS256"
| "PS384"
| "PS512"
| "RS256"
| "RS384"
| "RS512"
| "ES256"
| "ES384"
| "none";

§Type

§
"HS256" | "HS384" | "HS512" | "PS256" | "PS384" | "PS512" | "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "none"
[src]