1
0
mirror of https://github.com/BLAKE3-team/BLAKE3 synced 2024-09-28 19:21:48 +02:00

version 0.1.3

Changes since 0.1.2:
- All x86 implementations include _mm_prefetch optimizations. These
  improve performance for very large inputs.
- The C implementation performs parallel parent hashing, matching the
  performance of the single-threaded Rust implementation.
- b3sum supports --no-mmap. Contributed by @cesarb.
This commit is contained in:
Jack O'Connor 2020-01-22 21:35:24 -05:00
parent 163f52245d
commit e17c45ddd5
3 changed files with 4 additions and 3 deletions

@ -1,6 +1,6 @@
[package]
name = "blake3"
version = "0.1.2"
version = "0.1.3"
authors = ["Jack O'Connor <oconnor663@gmail.com>"]
description = "the BLAKE3 hash function"
repository = "https://github.com/BLAKE3-team/BLAKE3"

@ -1,6 +1,6 @@
[package]
name = "b3sum"
version = "0.1.2"
version = "0.1.3"
authors = ["Jack O'Connor <oconnor663@gmail.com>"]
description = "a command line implementation of the BLAKE3 hash function"
repository = "https://github.com/BLAKE3-team/BLAKE3"

@ -1,7 +1,7 @@
# b3sum
```
b3sum 0.1.2
b3sum 0.1.3
USAGE:
b3sum [FLAGS] [OPTIONS] [file]...
@ -9,6 +9,7 @@ USAGE:
FLAGS:
-h, --help Prints help information
--keyed Uses the keyed mode, with the raw 32-byte key read from stdin
--no-mmap Disables memory mapping
--no-names Omits filenames in the output
--raw Writes raw output bytes to stdout, rather than hex. --no-names is implied.
In this case, only a single input is allowed