From 7e82b01cd4901f6a35b5153536f11b87f5e4e622 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Thu, 21 Sep 2023 16:42:02 -0600 Subject: [PATCH] aes-gcm v0.10.3 (#552) --- Cargo.lock | 2 +- aes-gcm/CHANGELOG.md | 6 ++++++ aes-gcm/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f7ec63af..e94e4c79 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -29,7 +29,7 @@ dependencies = [ [[package]] name = "aes-gcm" -version = "0.10.2" +version = "0.10.3" dependencies = [ "aead", "aes", diff --git a/aes-gcm/CHANGELOG.md b/aes-gcm/CHANGELOG.md index d95d9ccd..160ec41a 100644 --- a/aes-gcm/CHANGELOG.md +++ b/aes-gcm/CHANGELOG.md @@ -4,6 +4,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.10.3 (2023-09-21) +### Security +- Avoid exposing plaintext on tag verification failure ([#551]) + +[#551]: https://github.com/RustCrypto/AEADs/pull/551 + ## 0.10.2 (2023-05-20) ### Added - `rand_core` feature to all crates ([#467]) diff --git a/aes-gcm/Cargo.toml b/aes-gcm/Cargo.toml index 405d9433..422aa5fe 100644 --- a/aes-gcm/Cargo.toml +++ b/aes-gcm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aes-gcm" -version = "0.10.2" +version = "0.10.3" description = """ Pure Rust implementation of the AES-GCM (Galois/Counter Mode) Authenticated Encryption with Associated Data (AEAD) Cipher