deno.land / std@0.91.0 / hash / hasher.ts

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
export type Message = string | ArrayBuffer;export type OutputFormat = "hex" | "base64";
export interface Hasher { update(data: Message): this; digest(): ArrayBuffer; toString(format?: OutputFormat): string;}
std

Version Info

Tagged at
3 years ago

External Dependencies

No external dependencies 🎉