Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions ascon/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.5.0 (2026-04-22)
### Changed
- Edition changed to 2024 and MSRV bumped to 1.85 ([#89])
- Improved performance of permutations ([#118])
- Replaced the `State` struct with free-standing permutation functions ([#122])

### Removed
- `zeroize` crate feature ([#122])

[#89]: https://github.com/RustCrypto/sponges/pull/89
[#118]: https://github.com/RustCrypto/sponges/pull/118
[#122]: https://github.com/RustCrypto/sponges/pull/122

## 0.4.0 (2023-07-27)
### Added
- `zeroize` feature ([#57])
Expand Down
2 changes: 1 addition & 1 deletion ascon/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ascon"
version = "0.5.0-rc.0"
version = "0.5.0"
authors = ["RustCrypto Developers"]
edition = "2024"
rust-version = "1.85"
Expand Down
3 changes: 2 additions & 1 deletion ascon/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Pure Rust implementation of the [Ascon] permutation, winner of the
[NIST Lightweight Cryptography] competition.

This is a low-level crate used for implementation of higher-level agorithms,
e.g. [`ascon-hash256`] and [`ascon-aead128`].
e.g. [`ascon-hash256`], [`ascon-xof128`], and [`ascon-aead128`].

## Minimum Supported Rust Version

Expand Down Expand Up @@ -51,6 +51,7 @@ dual licensed as above, without any additional terms or conditions.
[//]: # (links)

[`ascon-aead128`]: https://docs.rs/ascon-aead128
[`ascon-xof128`]: https://docs.rs/ascon-xof128
[`ascon-hash256`]: https://docs.rs/ascon-hash256
[RustCrypto]: https://github.com/rustcrypto
[Ascon]: https://ascon.iaik.tugraz.at
Expand Down
Loading