From f06e28fa344aca7cee845fa7ef80c1f8d2335be5 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sun, 6 Oct 2019 17:09:50 -0700 Subject: [PATCH] aes-gcm-siv v0.2.0 --- aes-gcm-siv/CHANGELOG.md | 11 ++++++++++- aes-gcm-siv/Cargo.toml | 2 +- aes-gcm/Cargo.toml | 2 +- aes-gcm/README.md | 5 ++--- 4 files changed, 14 insertions(+), 6 deletions(-) diff --git a/aes-gcm-siv/CHANGELOG.md b/aes-gcm-siv/CHANGELOG.md index 6656bd21..6d04fd1f 100644 --- a/aes-gcm-siv/CHANGELOG.md +++ b/aes-gcm-siv/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.1.0 (2019-09-28) +## 0.2.0 (2019-10-06) +### Added +- Expose "detached" in-place encryption/decryption APIs ([#21]) + +### Changed +- Upgrade to `polyval` v0.3 ([#25]) +[#25]: https://github.com/RustCrypto/AEADs/pull/25 +[#21]: https://github.com/RustCrypto/AEADs/pull/21 + +## 0.1.0 (2019-09-28) - Initial release diff --git a/aes-gcm-siv/Cargo.toml b/aes-gcm-siv/Cargo.toml index c06afdf7..d9b7dd37 100644 --- a/aes-gcm-siv/Cargo.toml +++ b/aes-gcm-siv/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aes-gcm-siv" -version = "0.1.0" +version = "0.2.0" authors = ["RustCrypto Developers"] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/aes-gcm/Cargo.toml b/aes-gcm/Cargo.toml index ef5d8bd5..f5c901b0 100644 --- a/aes-gcm/Cargo.toml +++ b/aes-gcm/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" authors = ["RustCrypto Developers"] edition = "2018" license = "MIT OR Apache-2.0" -description = "AES-GCM" +description = "Pure Rust implementation of the AES-GCM Authenticated Encryption with Associated Data (AEAD) cipher" readme = "README.md" documentation = "https://docs.rs/aes-gcm" repository = "https://github.com/RustCrypto/AEADs" diff --git a/aes-gcm/README.md b/aes-gcm/README.md index 6d2379ba..59338c34 100644 --- a/aes-gcm/README.md +++ b/aes-gcm/README.md @@ -7,8 +7,8 @@ ![Maintenance Status: Experimental][maintenance-image] [![Build Status][build-image]][build-link] -AES-GCM: [Authenticated Encryption and Associated Data (AEAD)][1] cipher -based on AES in [Galois/Counter Mode][2]. +Pure Rust implementation of the AES-GCM +[Authenticated Encryption with Associated Data (AEAD)][1] cipher. [Documentation][docs-link] @@ -50,4 +50,3 @@ dual licensed as above, without any additional terms or conditions. [//]: # (general links) [1]: https://en.wikipedia.org/wiki/Authenticated_encryption -[2]: https://en.wikipedia.org/wiki/Galois/Counter_Mode