Skip to content

Commit

Permalink
aes v0.9.0-pre.0 (#414)
Browse files Browse the repository at this point in the history
  • Loading branch information
baloo authored Mar 8, 2024
1 parent c577715 commit 2c3de88
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
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.

24 changes: 24 additions & 0 deletions aes/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,30 @@ 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).

## Unreleased
### Added
- add #[inline] attributes for KeyInit::new impls ([#386])

### Changed
- Bump `cipher` to v0.5.0-pre.1; MSRV 1.65 ([#394])
- replace inline ASM with ARMv8 intrinsics ([#380])
- enable ARMv8 backend by default; MSRV 1.72 ([#395])
- Bump `cipher` dependency to v0.5.0-pre.2 ([#398])
- Use `BlockCipherEncrypt`/`BlockCipherDecrypt` trait names ([#400])
- Assert precondition required for soundness ([#407])
- use const preconditions assert ([#408])
- bump `cipher` dependency to `0.5.0-pre.4` ([#413])

[#386]: https://github.com/RustCrypto/block-ciphers/pull/386
[#394]: https://github.com/RustCrypto/block-ciphers/pull/394
[#380]: https://github.com/RustCrypto/block-ciphers/pull/380
[#395]: https://github.com/RustCrypto/block-ciphers/pull/395
[#398]: https://github.com/RustCrypto/block-ciphers/pull/398
[#400]: https://github.com/RustCrypto/block-ciphers/pull/400
[#407]: https://github.com/RustCrypto/block-ciphers/pull/407
[#408]: https://github.com/RustCrypto/block-ciphers/pull/408
[#413]: https://github.com/RustCrypto/block-ciphers/pull/413

## 0.8.4 (2024-02-13)
### Changed
- Assert soundness preconditions for ARMv8 key expansion ([#407], [#408])
Expand Down
2 changes: 1 addition & 1 deletion aes/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aes"
version = "0.9.0-pre"
version = "0.9.0-pre.0"
description = "Pure Rust implementation of the Advanced Encryption Standard (a.k.a. Rijndael)"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand Down

0 comments on commit 2c3de88

Please sign in to comment.