keccak v0.1.2 (#18)

This commit is contained in:
Tony Arcieri 2022-05-24 17:53:43 -06:00 committed by GitHub
parent 0901b5f420
commit b59a4d5aa9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 19 additions and 3 deletions

View File

@ -5,7 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## 0.1.1 (2018-03-27)
## 0.1.2 (2022-05-24)
### Changed
- Implement `simd` feature with `portable_simd` instead of deprecated `packed_simd` ([#16])
[#16]: https://github.com/RustCrypto/sponges/pull/16
## 0.1.1 (2022-05-24)
### Added
- Generic keccak-p and keccak-f {200, 400, 800} ([#7])
- f1600x{2, 4, 8} ([#8])

View File

@ -1,6 +1,6 @@
[package]
name = "keccak"
version = "0.1.1"
version = "0.1.2"
description = """
Pure Rust implementation of the Keccak sponge function including the keccak-f
and keccak-p variants

View File

@ -7,10 +7,19 @@
![Rust Version][rustc-image]
[![Project Chat][chat-image]][chat-link]
Pure Rust implementation of the [Keccak Sponge Function][1].
Pure Rust implementation of the [Keccak Sponge Function][1] including the keccak-f
and keccak-p variants.
[Documentation][docs-link]
## About
This crate implements the core Keccak sponge function, upon which many other
cryptographic functions are built.
For the SHA-3 family including the SHAKE XOFs, see the [`sha3`] crate, which
is built on this crate.
## Minimum Supported Rust Version
Rust **1.41** or higher.
@ -54,3 +63,4 @@ dual licensed as above, without any additional terms or conditions.
[//]: # (general links)
[1]: https://keccak.team/keccak.html
[`sha3`]: https://github.com/RustCrypto/hashes/tree/master/sha3