keccak v0.1.3 (#28)

This commit is contained in:
Tony Arcieri 2022-11-14 12:30:19 -07:00 committed by GitHub
parent d82151aa0d
commit 6c98ff8396
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 57 additions and 2 deletions

1
.gitignore vendored
View File

@ -1,4 +1,3 @@
target/
*/target/
*/*/target/
Cargo.lock

25
Cargo.lock generated Normal file
View File

@ -0,0 +1,25 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "cpufeatures"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320"
dependencies = [
"libc",
]
[[package]]
name = "keccak"
version = "0.1.3"
dependencies = [
"cpufeatures",
]
[[package]]
name = "libc"
version = "0.2.137"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc7fcc620a3bff7cdd7a365be3376c97191aeaccc2a603e600951e452615bf89"

View File

@ -5,6 +5,12 @@ 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.3 (2022-11-14)
### Added
- ARMv8 SHA3 ASM intrinsics implementation for `keccak_f1600` ([#23])
[#23]: https://github.com/RustCrypto/sponges/pull/23
## 0.1.2 (2022-05-24)
### Changed
- Implement `simd` feature with `portable_simd` instead of deprecated `packed_simd` ([#16])

25
keccak/Cargo.lock generated Normal file
View File

@ -0,0 +1,25 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "cpufeatures"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320"
dependencies = [
"libc",
]
[[package]]
name = "keccak"
version = "0.1.2"
dependencies = [
"cpufeatures",
]
[[package]]
name = "libc"
version = "0.2.137"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc7fcc620a3bff7cdd7a365be3376c97191aeaccc2a603e600951e452615bf89"

View File

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