Skip to content
Permalink
Browse files
version 1.3.1
Changes since 1.3.0:
- The unstable `traits-preview` feature now includes an implementation
  of `crypto_common::BlockSizeUser`, AKA
  `digest::core_api::BlockSizeUser`. This allows `blake3::Hasher` to be
  used with `hmac::SimpleHmac`.
  • Loading branch information
oconnor663 committed Jan 25, 2022
1 parent 1544774 commit 4e84c8c7ae3da71d3aff5ba54d8ffa39a9b90fa0
Showing with 40 additions and 85 deletions.
  1. +1 −1 Cargo.toml
  2. +35 −80 b3sum/Cargo.lock
  3. +1 −1 b3sum/Cargo.toml
  4. +2 −2 b3sum/README.md
  5. +1 −1 c/blake3.h
@@ -1,6 +1,6 @@
[package]
name = "blake3"
version = "1.3.0"
version = "1.3.1"
authors = ["Jack O'Connor <oconnor663@gmail.com>", "Samuel Neves"]
description = "the BLAKE3 hash function"
repository = "https://github.com/BLAKE3-team/BLAKE3"

Some generated files are not rendered by default. Learn more.

@@ -1,6 +1,6 @@
[package]
name = "b3sum"
version = "1.3.0"
version = "1.3.1"
authors = ["Jack O'Connor <oconnor663@gmail.com>"]
description = "a command line implementation of the BLAKE3 hash function"
repository = "https://github.com/BLAKE3-team/BLAKE3"
@@ -5,7 +5,7 @@ A command line utility for calculating
Coreutils tools like `b2sum` or `md5sum`.

```
b3sum 1.3.0
b3sum 1.3.1
USAGE:
b3sum [OPTIONS] [FILE]...
@@ -15,7 +15,7 @@ ARGS:
or when - is given, read standard input.
OPTIONS:
-c, --check Reads BLAKE3 sums from the [file]s and checks them
-c, --check Reads BLAKE3 sums from the [FILE]s and checks them
--derive-key <CONTEXT> Uses the key derivation mode, with the given
context string. Cannot be used with --keyed.
-h, --help Print help information
@@ -8,7 +8,7 @@
extern "C" {
#endif

#define BLAKE3_VERSION_STRING "1.3.0"
#define BLAKE3_VERSION_STRING "1.3.1"
#define BLAKE3_KEY_LEN 32
#define BLAKE3_OUT_LEN 32
#define BLAKE3_BLOCK_LEN 64

0 comments on commit 4e84c8c

Please sign in to comment.