Promise<void> Resolves when the BLAKE3 WASM module is initialized and ready. Initialization starts eagerly on import. Idempotent — safe to await multiple times. In Node.js/Deno (sync init), this resolves immediately.
BLAKE3 cryptographic hashing via @fuzdev/blake3_wasm.
Synchronous and fast. Returns hex-encoded 256-bit (32-byte) digests. WASM initialization starts eagerly on import. Await blake3_ready before first use in browser contexts where the WASM must be fetched asynchronously.
2 declarations
Promise<void> Resolves when the BLAKE3 WASM module is initialized and ready. Initialization starts eagerly on import. Idempotent — safe to await multiple times. In Node.js/Deno (sync init), this resolves immediately.
(data: string | BufferSource): string Computes a BLAKE3 hash synchronously.
dataString or binary data to hash. Strings are UTF-8 encoded.
string | BufferSourcestring 64-character hexadecimal hash string (32 bytes).