Tested tool guide
Tested browser tools
Checked August 16, 2026
What BLAKE2 / BLAKE3 Hash Generator does, with a checked example
BLAKE2b, BLAKE2s, and BLAKE3 are modern cryptographic hash functions, and this tool computes all three for whatever text or file you give it, with SHA-256 as a speed baseline. Hashing happens entirely in the browser: nothing is uploaded, so it is safe even for files you would not want to send anywhere. The common surprise is that these are not three versions of one algorithm. BLAKE2 is defined by RFC 7693, BLAKE3 by its own separate spec, and neither is a NIST standard in the way SHA-256 is.
Worked example
A concrete input and expected output from the current implementation.
->
Expected output
BLAKE2b-512: ba80a53f981c4d0d6a2797b69f12f6e94c212f14685ac4b74b12bb6fdbffa2d17d87c5392aab792dc252d5de4533cc9518d38aa8dbf1925ab92386edd4009923
BLAKE2s-256: 508c5e8c327c14e2e1a72ba34eeb452f37458b209ed63a294d999b4c86675982
BLAKE3: 6437b3ac38465133ffb63b75273a8db548c558465d79db03fd359c6cd5bd9d85
"abc" is the canonical test input: RFC 7693 Appendix A publishes the BLAKE2b-512 and BLAKE2s-256 digests of "abc", and the BLAKE3 test suite publishes its digest of "abc", so any correct implementation must produce exactly these hex strings. Hex case is irrelevant, so the same values in uppercase match too.