This commit is contained in:
Jack Grigg 2021-05-02 12:50:41 +12:00
parent 8df320e3fa
commit a208150631
11 changed files with 20 additions and 14 deletions

6
Cargo.lock generated
View file

@ -66,7 +66,7 @@ dependencies = [
[[package]]
name = "age"
version = "0.5.1"
version = "0.6.0"
dependencies = [
"aes",
"aes-ctr",
@ -112,7 +112,7 @@ dependencies = [
[[package]]
name = "age-core"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"base64",
"c2-chacha",
@ -1614,7 +1614,7 @@ checksum = "941ba9d78d8e2f7ce474c015eea4d9c6d25b6a3327f9832ee29a4de27f91bbb8"
[[package]]
name = "rage"
version = "0.5.1"
version = "0.6.0"
dependencies = [
"age",
"chrono",

View file

@ -7,6 +7,8 @@ and this project adheres to Rust's notion of
to 1.0.0 are beta releases.
## [Unreleased]
## [0.6.0] - 2021-05-02
### Security
- `age_core::primitives::aead_decrypt` now takes a `size` argument, checked
against the plaintext length. This is to mitigate multi-key attacks, where a

View file

@ -1,7 +1,7 @@
[package]
name = "age-core"
description = "[BETA] Common functions used across the age crates"
version = "0.5.0"
version = "0.6.0"
authors = ["Jack Grigg <thestr4d@gmail.com>"]
repository = "https://github.com/str4d/rage"
readme = "README.md"

View file

@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0"
edition = "2018"
[dependencies]
age-core = { version = "0.5.0", path = "../age-core", features = ["plugin"] }
age-core = { version = "0.6.0", path = "../age-core", features = ["plugin"] }
bech32 = "0.8"
chrono = "0.4"
secrecy = "0.7"

View file

@ -9,6 +9,8 @@ and this project adheres to Rust's notion of
to 1.0.0 are beta releases.
## [Unreleased]
## [0.6.0] - 2021-05-02
### Security
- `StreamReader::seek(SeekFrom::End(offset))` did not previously authenticate
the ciphertext length; if the ciphertext had been truncated or extended by

View file

@ -1,7 +1,7 @@
[package]
name = "age"
description = "[BETA] A simple, secure, and modern encryption library."
version = "0.5.1"
version = "0.6.0"
authors = ["Jack Grigg <thestr4d@gmail.com>"]
repository = "https://github.com/str4d/rage"
readme = "README.md"
@ -14,7 +14,7 @@ edition = "2018"
maintenance = { status = "experimental" }
[dependencies]
age-core = { version = "0.5.0", path = "../age-core" }
age-core = { version = "0.6.0", path = "../age-core" }
# Dependencies required by the age specification:
# - Base64 from RFC 4648

View file

@ -24,7 +24,7 @@ The reference interoperable Golang implementation is available at
Add this line to your `Cargo.toml`:
```
age = "0.5"
age = "0.6"
```
See the [documentation](https://docs.rs/age) for examples.

4
fuzz-afl/Cargo.lock generated
View file

@ -30,7 +30,7 @@ dependencies = [
[[package]]
name = "age"
version = "0.5.1"
version = "0.6.0"
dependencies = [
"age-core",
"base64",
@ -57,7 +57,7 @@ dependencies = [
[[package]]
name = "age-core"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"base64",
"c2-chacha",

4
fuzz/Cargo.lock generated
View file

@ -17,7 +17,7 @@ dependencies = [
[[package]]
name = "age"
version = "0.5.1"
version = "0.6.0"
dependencies = [
"age-core",
"base64",
@ -44,7 +44,7 @@ dependencies = [
[[package]]
name = "age-core"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"base64",
"c2-chacha",

View file

@ -9,6 +9,8 @@ and this project adheres to Rust's notion of
to 1.0.0 are beta releases.
## [Unreleased]
## [0.6.0] - 2021-05-02
### Added
- Plugin support!
- The new [`age-plugin`](https://crates.io/crates/age-plugin) crate provides

View file

@ -1,7 +1,7 @@
[package]
name = "rage"
description = "[BETA] A simple, secure, and modern encryption tool."
version = "0.5.1"
version = "0.6.0"
authors = ["Jack Grigg <thestr4d@gmail.com>"]
repository = "https://github.com/str4d/rage"
readme = "../README.md"
@ -43,7 +43,7 @@ maintenance = { status = "experimental" }
[dependencies]
# rage and rage-keygen dependencies
age = { version = "0.5.0", path = "../age", features = ["armor", "cli-common", "plugin"] }
age = { version = "0.6.0", path = "../age", features = ["armor", "cli-common", "plugin"] }
chrono = "0.4"
console = "0.14"
env_logger = "0.8"