diff --git a/keccak/CHANGELOG.md b/keccak/CHANGELOG.md new file mode 100644 index 0000000..dc6c320 --- /dev/null +++ b/keccak/CHANGELOG.md @@ -0,0 +1,17 @@ +# Changelog + +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) +### Added +- Generic keccak-p and keccak-f {200, 400, 800} ([#7]) +- f1600x{2, 4, 8} ([#8]) + +[#7]: https://github.com/RustCrypto/sponges/pull/7 +[#8]: https://github.com/RustCrypto/sponges/pull/8 + +## 0.1.0 (2018-03-27) +- Initial release diff --git a/keccak/Cargo.toml b/keccak/Cargo.toml index 78d2972..87f62da 100644 --- a/keccak/Cargo.toml +++ b/keccak/Cargo.toml @@ -1,8 +1,11 @@ [package] name = "keccak" version = "0.1.1" +description = """ +Pure Rust implementation of the Keccak sponge function including the keccak-f +and keccak-p variants +""" authors = ["RustCrypto Developers"] -description = "Keccak sponge function" license = "Apache-2.0 OR MIT" documentation = "https://docs.rs/keccak" repository = "https://github.com/RustCrypto/sponges/tree/master/keccak"