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

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.// This module is browser compatible.
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
a year ago