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

SignatureMethod

import type { SignatureMethod } from "https://raw.githubusercontent.com/snsinfu/deno-oauth-1.0a/main/mod.ts";

Represents a signature method.

interface SignatureMethod {
hash?: (message: string) => string;
name: string;
sign: (message: string, key: string) => string;
}

§Properties

§
hash?: (message: string) => string
[src]
§
name: string
[src]
§
sign: (message: string, key: string) => string
[src]