Tested tool guide
Tested browser tools
Checked August 16, 2026
What BLAKE2 Hash Generator does, with a checked example
This tool computes BLAKE2b or BLAKE2s hash values for text or hex input, entirely in your browser. You can choose the digest length (as small as 1 byte) and provide an optional key, which turns the hash into a keyed MAC. The main surprise: BLAKE2 output size is variable, so changing the digest length yields a completely different hash, not just a truncated version of the same hash. Also, the tool does not prepend or interpret salt or personalization unless you provide them as part of the input.
Worked example
A concrete input and expected output from the current implementation.
Input
Text: hello world
Algorithm: BLAKE2b
Digest size: 32 bytes (256 bits)
->
Expected output
256-bit BLAKE2b hash of 'hello world' (hex): 256c83b297114d201b30179f3f0ef0cace9783622da5974326b436178aeef610
BLAKE2b with a 32-byte output is the standard BLAKE2b-256 variant. The given input 'hello world' (no newline) produces the hex digest shown, which matches the published test vector for BLAKE2b-256 of that string.