Skip to content

Tags: oconnor663/blake2_simd

Tags

1.0.2

Toggle 1.0.2's commit message
version 1.0.2

Changes since 1.0.1:
- Upgraded `constant_time_eq` to version 0.3. This bumps the MSRV of
  this project to 1.66.

1.0.1

Toggle 1.0.1's commit message
version 1.0.1

Changes since 1.0.0:
- Upgraded `constant_time_eq` to version 0.2.4. This bumps the MSRV of
  this project to 1.59.0.

1.0.0

Toggle 1.0.0's commit message
version 1.0.0

Changes since 0.5.11:
- The Hash types now implement From<[u8; OUTBYTES]> and From<&[u8; OUTBYTES]>.
- Upgraded arrayvec to 0.7.0, which uses const generics. This bumps the
  minimum supported Rust compiler version to 1.51.

0.5.11

Toggle 0.5.11's commit message
version 0.5.11

Changes since 0.5.10:
- Updated crates.io metadata.

0.5.10

Toggle 0.5.10's commit message
version 0.5.10

Changes since 0.5.9:
- Performance improvements (43d9b9b).

0.5.9

Toggle 0.5.9's commit message
version 0.5.9

Changes since 0.5.8:
- Upgrade the arrayvec dependency to v0.5.

0.5.8

Toggle 0.5.8's commit message
version 0.5.8

Changes since 0.5.7:
- The range of allowed parameter values has been expanded to support the
  BLAKE2X extensible-output functions.

0.5.7

Toggle 0.5.7's commit message
version 0.5.7

Changes since 0.5.6:
- Add #[inline] to Params::hash() to improve performance for the short
  message case.

0.5.6

Toggle 0.5.6's commit message
version 0.5.6

Changes since 0.5.5:
- HashManyJob is no longer tied to the lifetime of its Params argument.
- The `blake2` command will now accept multiple files. In that case --
  but not in the single argument case -- it prints the filename after
  each hash.

0.5.5

Toggle 0.5.5's commit message
version 0.5.5

Changes since 0.5.4:
- A new BLAKE2s optimization improved performance by about 6%.
- HashManyJob now implements Debug and Clone. Clone is arguably useless
  right now, but HashManyJob might allow mutation in the future.