Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
version 1.3.0
Changes since 1.2.0: - Added blake3_hasher_reset to the C API, for parity with the Rust API. - Updated digest to v0.10. This version merged the crypto-mac crate with digest, so the dependency on crypto-mac has been removed. These trait implementations are still gated behind the "traits-preview" feature. - Updated clap to v3.
- Loading branch information
Showing
with
18 additions
and 18 deletions.
- +1 −1 Cargo.toml
- +14 −14 b3sum/Cargo.lock
- +1 −1 b3sum/Cargo.toml
- +1 −1 b3sum/README.md
- +1 −1 c/blake3.h
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @@ -5,7 +5,7 @@ A command line utility for calculating | ||
| Coreutils tools like `b2sum` or `md5sum`. | ||
|
|
||
| ``` | ||
| b3sum 1.3.0 | ||
| USAGE: | ||
| b3sum [OPTIONS] [FILE]... | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @@ -8,7 +8,7 @@ | ||
| extern "C" { | ||
| #endif | ||
|
|
||
| #define BLAKE3_VERSION_STRING "1.3.0" | ||
| #define BLAKE3_KEY_LEN 32 | ||
| #define BLAKE3_OUT_LEN 32 | ||
| #define BLAKE3_BLOCK_LEN 64 | ||