HEX
Server: Apache/2.4.65 (Debian)
System: Linux kubikelcreative 5.10.0-35-amd64 #1 SMP Debian 5.10.237-1 (2025-05-19) x86_64
User: www-data (33)
PHP: 8.4.13
Disabled: NONE
Upload Files
File: /var/www/indoadvisory_new/webapp/node_modules/blake3-wasm/esm/browser/hash-instance.d.ts
import { BaseHash as BaseHasher } from '../base/index';
import { HashInput } from './hash-fn';
import { BrowserEncoding } from './encoding';
import { IBaseHashOptions } from '../base/hash-fn';
import { BrowserHashReader } from './hash-reader';
import { IInternalReader } from '../base/hash-reader';
import { Hash } from './hash';
/**
 * @inheritdoc
 */
export declare class BrowserHasher extends BaseHasher<Hash, IInternalReader, BrowserHashReader> {
    /**
     * @inheritdoc
     * @override
     */
    update(data: HashInput): this;
    /**
     * Returns a digest of the hash with the given encoding.
     */
    digest(options?: IBaseHashOptions): Hash;
    digest(encoding: undefined, options: IBaseHashOptions): Hash;
    digest(encoding: BrowserEncoding, options?: IBaseHashOptions): string;
}
/**
 * A Node.js crypto-like createHash method.
 */
export declare const createHash: () => BrowserHasher;
/**
 * A Node.js crypto-like createHash method.
 */
export declare const createKeyed: (key: Uint8Array) => BrowserHasher;