mirror of
https://github.com/str4d/rage.git
synced 2025-04-04 11:27:43 +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]]
|
[[package]]
|
||||||
name = "age"
|
name = "age"
|
||||||
version = "0.5.1"
|
version = "0.6.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"aes",
|
"aes",
|
||||||
"aes-ctr",
|
"aes-ctr",
|
||||||
|
@ -112,7 +112,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "age-core"
|
name = "age-core"
|
||||||
version = "0.5.0"
|
version = "0.6.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"base64",
|
"base64",
|
||||||
"c2-chacha",
|
"c2-chacha",
|
||||||
|
@ -1614,7 +1614,7 @@ checksum = "941ba9d78d8e2f7ce474c015eea4d9c6d25b6a3327f9832ee29a4de27f91bbb8"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rage"
|
name = "rage"
|
||||||
version = "0.5.1"
|
version = "0.6.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"age",
|
"age",
|
||||||
"chrono",
|
"chrono",
|
||||||
|
|
|
@ -7,6 +7,8 @@ and this project adheres to Rust's notion of
|
||||||
to 1.0.0 are beta releases.
|
to 1.0.0 are beta releases.
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.6.0] - 2021-05-02
|
||||||
### Security
|
### Security
|
||||||
- `age_core::primitives::aead_decrypt` now takes a `size` argument, checked
|
- `age_core::primitives::aead_decrypt` now takes a `size` argument, checked
|
||||||
against the plaintext length. This is to mitigate multi-key attacks, where a
|
against the plaintext length. This is to mitigate multi-key attacks, where a
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "age-core"
|
name = "age-core"
|
||||||
description = "[BETA] Common functions used across the age crates"
|
description = "[BETA] Common functions used across the age crates"
|
||||||
version = "0.5.0"
|
version = "0.6.0"
|
||||||
authors = ["Jack Grigg <thestr4d@gmail.com>"]
|
authors = ["Jack Grigg <thestr4d@gmail.com>"]
|
||||||
repository = "https://github.com/str4d/rage"
|
repository = "https://github.com/str4d/rage"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
|
@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[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"
|
bech32 = "0.8"
|
||||||
chrono = "0.4"
|
chrono = "0.4"
|
||||||
secrecy = "0.7"
|
secrecy = "0.7"
|
||||||
|
|
|
@ -9,6 +9,8 @@ and this project adheres to Rust's notion of
|
||||||
to 1.0.0 are beta releases.
|
to 1.0.0 are beta releases.
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.6.0] - 2021-05-02
|
||||||
### Security
|
### Security
|
||||||
- `StreamReader::seek(SeekFrom::End(offset))` did not previously authenticate
|
- `StreamReader::seek(SeekFrom::End(offset))` did not previously authenticate
|
||||||
the ciphertext length; if the ciphertext had been truncated or extended by
|
the ciphertext length; if the ciphertext had been truncated or extended by
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "age"
|
name = "age"
|
||||||
description = "[BETA] A simple, secure, and modern encryption library."
|
description = "[BETA] A simple, secure, and modern encryption library."
|
||||||
version = "0.5.1"
|
version = "0.6.0"
|
||||||
authors = ["Jack Grigg <thestr4d@gmail.com>"]
|
authors = ["Jack Grigg <thestr4d@gmail.com>"]
|
||||||
repository = "https://github.com/str4d/rage"
|
repository = "https://github.com/str4d/rage"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
@ -14,7 +14,7 @@ edition = "2018"
|
||||||
maintenance = { status = "experimental" }
|
maintenance = { status = "experimental" }
|
||||||
|
|
||||||
[dependencies]
|
[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:
|
# Dependencies required by the age specification:
|
||||||
# - Base64 from RFC 4648
|
# - Base64 from RFC 4648
|
||||||
|
|
|
@ -24,7 +24,7 @@ The reference interoperable Golang implementation is available at
|
||||||
Add this line to your `Cargo.toml`:
|
Add this line to your `Cargo.toml`:
|
||||||
|
|
||||||
```
|
```
|
||||||
age = "0.5"
|
age = "0.6"
|
||||||
```
|
```
|
||||||
|
|
||||||
See the [documentation](https://docs.rs/age) for examples.
|
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]]
|
[[package]]
|
||||||
name = "age"
|
name = "age"
|
||||||
version = "0.5.1"
|
version = "0.6.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"age-core",
|
"age-core",
|
||||||
"base64",
|
"base64",
|
||||||
|
@ -57,7 +57,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "age-core"
|
name = "age-core"
|
||||||
version = "0.5.0"
|
version = "0.6.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"base64",
|
"base64",
|
||||||
"c2-chacha",
|
"c2-chacha",
|
||||||
|
|
4
fuzz/Cargo.lock
generated
4
fuzz/Cargo.lock
generated
|
@ -17,7 +17,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "age"
|
name = "age"
|
||||||
version = "0.5.1"
|
version = "0.6.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"age-core",
|
"age-core",
|
||||||
"base64",
|
"base64",
|
||||||
|
@ -44,7 +44,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "age-core"
|
name = "age-core"
|
||||||
version = "0.5.0"
|
version = "0.6.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"base64",
|
"base64",
|
||||||
"c2-chacha",
|
"c2-chacha",
|
||||||
|
|
|
@ -9,6 +9,8 @@ and this project adheres to Rust's notion of
|
||||||
to 1.0.0 are beta releases.
|
to 1.0.0 are beta releases.
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.6.0] - 2021-05-02
|
||||||
### Added
|
### Added
|
||||||
- Plugin support!
|
- Plugin support!
|
||||||
- The new [`age-plugin`](https://crates.io/crates/age-plugin) crate provides
|
- The new [`age-plugin`](https://crates.io/crates/age-plugin) crate provides
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "rage"
|
name = "rage"
|
||||||
description = "[BETA] A simple, secure, and modern encryption tool."
|
description = "[BETA] A simple, secure, and modern encryption tool."
|
||||||
version = "0.5.1"
|
version = "0.6.0"
|
||||||
authors = ["Jack Grigg <thestr4d@gmail.com>"]
|
authors = ["Jack Grigg <thestr4d@gmail.com>"]
|
||||||
repository = "https://github.com/str4d/rage"
|
repository = "https://github.com/str4d/rage"
|
||||||
readme = "../README.md"
|
readme = "../README.md"
|
||||||
|
@ -43,7 +43,7 @@ maintenance = { status = "experimental" }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# rage and rage-keygen 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"
|
chrono = "0.4"
|
||||||
console = "0.14"
|
console = "0.14"
|
||||||
env_logger = "0.8"
|
env_logger = "0.8"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue