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
11 changes: 10 additions & 1 deletion aes-gcm-siv/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion aes-gcm-siv/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion aes-gcm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
5 changes: 2 additions & 3 deletions aes-gcm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]

Expand Down Expand Up @@ -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