mirror of
https://github.com/str4d/rage.git
synced 2025-04-03 19:07:42 +03:00
v0.6.0
This commit is contained in:
parent
8df320e3fa
commit
a208150631
11 changed files with 20 additions and 14 deletions
6
Cargo.lock
generated
6
Cargo.lock
generated
|
@ -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",
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
4
fuzz-afl/Cargo.lock
generated
|
@ -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
4
fuzz/Cargo.lock
generated
|
@ -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",
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue