Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/fsrouter/deps.ts>http.KeyRing

A file system based router for Deno.
Go to Latest
interface http.KeyRing
import { type http } from "https://deno.land/x/fsrouter@2.11.1/deps.ts";
const { KeyRing } = http;

An interface which describes the methods that SecureCookieMap uses to sign and verify cookies.

Methods

indexOf(data: Data, digest: string): Promise<number> | number

Given a set of data and a digest, return the key index of the key used to sign the data. The index is 0 based. A non-negative number indices the digest is valid and a key was found.

sign(data: Data): Promise<string> | string

Sign the data, returning a string based digest of the data.

verify(data: Data, digest: string): Promise<boolean> | boolean

Verifies the digest matches the provided data, indicating the data was signed by the keyring and has not been tampered with.