From 5f6f12386b5453e7d94b26934a6378af1e3ff07d Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sun, 15 Mar 2020 15:10:43 -0700 Subject: [PATCH] aes-gcm v0.5.0 --- aes-gcm/CHANGELOG.md | 9 +++++++++ aes-gcm/Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/aes-gcm/CHANGELOG.md b/aes-gcm/CHANGELOG.md index 3fa5e53a..1a50f9ec 100644 --- a/aes-gcm/CHANGELOG.md +++ b/aes-gcm/CHANGELOG.md @@ -4,6 +4,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.5.0 (2020-03-15) +### Added +- Support for non-96-bit nonces ([#126]) + +### Changed +- `AesGcm` type is now generic around nonce size ([#126]) + +[#126]: https://github.com/RustCrypto/AEADs/pull/126 + ## 0.4.2 (2020-03-09) ### Fixed - Off-by-one error in `debug_assert` for `BlockCipher::ParBlocks` ([#104]) diff --git a/aes-gcm/Cargo.toml b/aes-gcm/Cargo.toml index 4fe12d8f..8fd62153 100644 --- a/aes-gcm/Cargo.toml +++ b/aes-gcm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aes-gcm" -version = "0.4.2" +version = "0.5.0" description = """ Pure Rust implementation of the AES-GCM (Galois/Counter Mode) Authenticated Encryption with Associated Data (AEAD) Cipher