keccak v0.1.1 (#15)

This commit is contained in:
Tony Arcieri 2022-05-24 16:35:18 -06:00 committed by GitHub
parent 79780c5df3
commit 5ec2be1538
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 1 deletions

17
keccak/CHANGELOG.md Normal file
View File

@ -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

View File

@ -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"