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

Digest.Algorithm

import type { Digest } from "https://raw.githubusercontent.com/i-xi-dev/bytes.es/4.4.2/deps.ts"; 

const { Algorithm } = Digest;

Digest algorithm

interface Algorithm {
compute: (input: BufferSource) => Promise<ArrayBuffer>;
}

§Properties

§
compute: (input: BufferSource) => Promise<ArrayBuffer>
[src]

Computes the digest for the byte sequence.