UNPKG

blake3

Version:

BLAKE3 hashing for JavaScript: native Node bindings (where available) and WebAssembly

12 lines (11 loc) 512 B
/// <reference types="node" /> import { HashInput } from '../node/hash-fn'; import { IBaseHashOptions } from '../base/hash-fn'; /** * @hidden */ export declare const normalizeInput: (input: HashInput, encoding?: "ascii" | "utf8" | "utf-8" | "utf16le" | "ucs2" | "ucs-2" | "base64" | "latin1" | "binary" | "hex" | undefined) => Buffer; /** * Returns a blake3 hash of the input, returning the binary hash data. */ export declare function hash(input: HashInput, { length }?: IBaseHashOptions): Buffer | string;