forked from BLAKE3-team/BLAKE3
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes since 0.1.3: - Hasher supports the reset() method. - Hasher implements several traits from the `digest` and `crypto_mac` crates. - Bug fixes in the C implementation for MSVC and for 32-bit x86.
- Loading branch information
1 parent
0651736
commit 0de4412
Showing
3 changed files
with
3 additions
and
3 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "blake3" | ||
version = "0.1.3" | ||
version = "0.1.4" | ||
authors = ["Jack O'Connor <[email protected]>"] | ||
description = "the BLAKE3 hash function" | ||
repository = "https://github.com/BLAKE3-team/BLAKE3" | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "b3sum" | ||
version = "0.1.3" | ||
version = "0.1.4" | ||
authors = ["Jack O'Connor <[email protected]>"] | ||
description = "a command line implementation of the BLAKE3 hash function" | ||
repository = "https://github.com/BLAKE3-team/BLAKE3" | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# b3sum | ||
|
||
``` | ||
b3sum 0.1.3 | ||
b3sum 0.1.4 | ||
USAGE: | ||
b3sum [FLAGS] [OPTIONS] [file]... | ||
|