ascon v0.3.0 (#50)

This commit is contained in:
Sebastian Ramacher 2023-03-17 15:45:49 +01:00 committed by GitHub
parent 3e38152a4a
commit 633777a1c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 2 deletions

2
Cargo.lock generated
View File

@ -4,4 +4,4 @@ version = 3
[[package]]
name = "ascon"
version = "0.3.0-pre"
version = "0.3.0"

View File

@ -5,6 +5,19 @@ 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.3.0 (2023-03-17)
### Added
- `State` type and permutation from `ascon-core` crate ([#49])
- `no_unroll` feature
### Removed
- AEAD API and `aead` dependency
The implementation of the AEAD API is provided by `ascon-aead`.
- `Ascon`, `Key`, `Nonce` types
- `alloc`, `std`, and `aead` features
[#49]: https://github.com/RustCrypto/sponges/pull/49
## 0.2.0 (2023-02-25)
### Added
- `no_std` support ([#36])

View File

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