UNPKG

blake3-wasm

Version:

BLAKE3 hashing for JavaScript: WebAssembly bindings only

12 lines (11 loc) 321 B
import { BrowserEncoding } from './encoding.js'; /** * Hash returned from functions in the browser. */ export declare class Hash extends Uint8Array { /** * A constant-time comparison against the other hash/array. */ equals(other: unknown): boolean; toString(encoding?: BrowserEncoding): string; }