ascon v0.4.0 (#58)

This commit is contained in:
Sebastian Ramacher 2023-07-27 22:09:49 +02:00 committed by GitHub
parent e767312a21
commit aa5da2013e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 20 additions and 2 deletions

11
Cargo.lock generated
View File

@ -4,4 +4,13 @@ version = 3
[[package]]
name = "ascon"
version = "0.3.1"
version = "0.4.0"
dependencies = [
"zeroize",
]
[[package]]
name = "zeroize"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a0956f1ba7c7909bfb66c2e9e4124ab6f6482560f6628b5aaeba39207c9aad9"

View File

@ -5,6 +5,15 @@ 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.4.0 (2023-07-27)
### Added
- `zeroize` feature ([#57])
### Removed
- Implementation of `Copy` trait for `State` ([#57])
[#57]: https://github.com/RustCrypto/sponges/pull/57
## 0.3.1 (2023-03-19)
### Changed
- Drop MSRV to 1.56 ([#51])

View File

@ -1,6 +1,6 @@
[package]
name = "ascon"
version = "0.4.0-pre"
version = "0.4.0"
description = "Pure rust implementation of the Ascon permutation"
authors = [
"Sebastian Ramacher <sebastian.ramacher@ait.ac.at>",