1
0
Fork 0
mirror of https://github.com/BLAKE3-team/BLAKE3 synced 2024-05-19 09:06:05 +02:00
BLAKE3/README.md
2020-01-04 04:30:43 -05:00

2.0 KiB

BLAKE3

BLAKE3 is a cryptographic hash function that is

  1. Faster than MD5, SHA1, SHA2, SHA3, and even BLAKE2
  2. Highly parallelizable: The more data and the more cores, the faster it goes. (For you specialists reading this: this is because it is actually a MerkleTree under the hood.)
  3. Capable of streaming and random-access verification. (Again: the magic of Merkle Trees.)
  4. Carefully engineered to be simple and safe to use, with no "modes" or tweaks required.

This repository provides the reference implementation of BLAKE3, which is coded in Rust and includes portable as well as optimized code for various instructions sets.

The complete specifications and design rationale are available as a PDF and its LaTeX source.

The following graph shows BLAKE3's multi-threaded throughput on an Intel Kany Lake processor:

benchmarks

BLAKE3 was designed by:

WARNING: BLAKE3 is not a password-hash function, because it's designed to be fast, whereas password hashing should not be fast. If you hash passwords to store the hashes or if you derive keys from password, we recommend Argon2.

Usage

TODO

History

BLAKE3 is essentially an adapted version of BLAKE2 using the tree Bao tree mode.

BLAKE2 is an established cryptographic hash function, for example supported by OpenSSL, and used in countless applications. Bao is a tree hashing mode satisfying the requirements for provably secure tree hashing.

Contributing

Please see CONTRIBUTING.md

Licensing

The source code in the present repository is dual-licensed under Apache 2 and CC0 licences.