1
0
Fork 0
mirror of https://github.com/BLAKE3-team/BLAKE3 synced 2024-05-04 02:36:08 +02:00

version 0.2.3

Changes since version 0.2.2:
- Bug fix: Commit 13556be fixes a crash on Windows when using the SSE4.1
  assembly implementation (--features=c, set by default for b3sum). This
  is undefined behavior and therefore a potential security issue.
- b3sum now supports the --num-threads flag.
- The C API now includes a blake3_hasher_finalize_seek() function, which
  returns output from any position in the extended output stream.
- Build fix: Commit 5fad419 fixes a compiler error in the AVX-512 C
  intrinsics implementation targeting the Windows GNU ABI.
This commit is contained in:
Jack O'Connor 2020-03-29 01:06:57 -04:00
parent 5fad419a8d
commit 7caf1ad4bb
3 changed files with 3 additions and 3 deletions

View File

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

View File

@ -1,6 +1,6 @@
[package]
name = "b3sum"
version = "0.2.2"
version = "0.2.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"

View File

@ -5,7 +5,7 @@ A command line utility for calculating
Coreutils tools like `b2sum` or `md5sum`.
```
b3sum 0.2.2
b3sum 0.2.3
USAGE:
b3sum [FLAGS] [OPTIONS] [file]...