Commit graph

94 commits

Author SHA1 Message Date
Jack Grigg
d35d442f91 v0.11.0 2024-11-03 10:42:17 +00:00
Jack Grigg
93fa28ad78 Migrate to secrecy 0.10 2024-11-03 05:38:51 +00:00
Jack Grigg
9476af8e1f age-plugin: Add labels extension to recipient-v1 2024-08-12 04:36:12 +00:00
Jack Grigg
8f1d6af149 age: Return label set from Recipient::wrap_file_key 2024-08-12 04:35:07 +00:00
Jack Grigg
e833cd19e4 v0.10.0 2024-02-04 22:33:22 +00:00
Jack Grigg
5c67ec2180 Migrate to base64 0.21 2023-08-06 15:06:12 +00:00
Jack Grigg
5b2ade12a4 Migrate to workspace inheritance 2023-08-06 15:06:12 +00:00
Jack Grigg
fdb41822fc Bump MSRV to 1.65.0 2023-08-06 15:06:10 +00:00
Jack Grigg
ec025bea2a v0.9.0 2022-10-27 02:28:43 +00:00
Jack Grigg
de96ae7153 Fix clippy lints 2022-10-26 08:58:13 +00:00
Jack Grigg
d2bb92915a Bump MSRV to 1.59.0
Closes str4d/rage#348.
2022-10-26 08:05:12 +00:00
Jack Grigg
54bec0e333 Add missing changelog entries 2022-09-11 01:09:39 +00:00
Jack Grigg
885b90fe29 Add rust-version metadata to Cargo.toml files 2022-09-03 13:54:44 +00:00
Jack Grigg
c31d250356 Migrate to rsa 0.6 and chacha20poly1305 0.10
This brings us onto Rust Crypto crates with MSRV 1.56 or lower.
2022-09-03 13:53:40 +00:00
Jack Grigg
0787472339 v0.8.0 2022-05-02 00:47:18 +00:00
Jack Grigg
1324b80562 age: Return correct response encoding for confirm command 2022-05-01 19:26:12 +00:00
Jack Grigg
abc2d978db age-core: Expose unsupported bidir response as Error::Unsupported 2022-03-20 18:06:51 +00:00
Jack Grigg
3eea64acf6 Fix clippy lints with --no-default-features 2022-03-19 19:31:32 +00:00
Jack Grigg
3dfb189281 Use renamed rustdoc::broken_intra_doc_links 2022-03-16 04:10:44 +00:00
Jack Grigg
4df2fac3e1 Migrate to 2021 edition 2022-03-16 04:10:44 +00:00
Jack Grigg
e297965621 Bump MSRV to 1.56.0
Closes str4d/rage#285.
2022-03-16 03:34:54 +00:00
Jack Grigg
3872563814 Add helper environment variable for debugging plugins
Setting the `AGEDEBUG` environment variable to `plugin` will cause all
plugin communications, as well as the plugin's stderr, to be printed to
the stderr of the parent process (e.g. rage).
2021-12-28 00:26:38 +00:00
Jack Grigg
ed63c41eb1 Migrate to hkdf 0.12
We need to depend on two versions of the `sha2` crate because `rsa`
doesn't have a version depending on `digest 0.10` yet.
2021-12-27 15:26:38 +00:00
Jack Grigg
7a2ff3ad4f v0.7.1 2021-12-27 00:30:42 +00:00
Jack Grigg
a23763cbc3 age-core: Reject last lines in AgeStanza bodies with trailing bits
If a Base64 line has length 2 or 3 mod 4, there are more bits in the
encoding characters than can be decoded into bytes. RFC 4648 states:

   For example, if the input is only one octet for a base 64 encoding,
   then all six bits of the first symbol are used, but only the first
   two bits of the next symbol are used.  These pad bits MUST be set to
   zero by conforming encoders, which is described in the descriptions
   on padding below.

The `base64` crate enforces this check, but in the 0.7.0 refactor we
forgot to enforce it ourselves.
2021-12-23 22:12:33 +00:00
Jack Grigg
97ac181d89 age-core: Add more fuzzer crash artifacts as test cases 2021-12-23 22:10:26 +00:00
Jack Grigg
8da15148fc age-core: Reject invalid last lines in AgeStanza bodies
The length of a Base64 encoding can never be 1 mod 4, because that
only provides six of the eight bits necessary for encoding a byte.
Previously we checked that every line was valid Base64 (which works
because all lines except the last are 64 characters, which exactly
encodes 48 bytes).

In 0.7.0 we improved the parser efficiency by only running the Base64
decoder lazily. We replaced the per-line check with an `is_base64_char`
check, but forgot to reject the invalid subset of last-line lengths.
2021-12-23 20:57:47 +00:00
Jack Grigg
349b4c31cb age-core: Add test case for fuzzer crash artifact 2021-12-23 20:57:47 +00:00
Jack Grigg
4c79db3fe0 v0.7.0 2021-10-18 17:52:37 +01:00
Jack Grigg
e339d26e36 age-core: Improve crate documentation 2021-10-18 14:24:19 +01:00
Jack Grigg
c7a2e998c6 age-core: Re-export secrecy crate 2021-10-18 14:24:19 +01:00
Jack Grigg
bbe8d518fb age-core: Add plugin::Error enum 2021-10-18 13:13:37 +01:00
Jack Grigg
36ca0c236e Fix various clippy lints 2021-09-12 19:53:20 +01:00
Jack Grigg
d332c31437 chacha20poly1305 0.9
We switch from the c2-chacha crate to the chacha20 crate, as the latter
is now close to equivalent performance (equivalent when compiled with
`RUSTFLAGS="-Ctarget-feature=+avx2"`), and is no longer optional
upstream.
2021-08-29 18:26:12 +01:00
Jack Grigg
12749521f0 nom 7 and pinentry 0.5 2021-08-28 14:01:32 +01:00
Jack Grigg
0fe89b9aec age-core: Defer Base64 decoding entirely
The new `AgeStanza::body` method replaces the previous `body` property,
enabling a wrapping parser to defer Base64 decoding until the end.
2021-08-08 00:44:02 +01:00
Jack Grigg
ba96da75ca age-core: Concatenate body lines more efficiently when parsing headers
The prior behaviour was copying each individual byte into the output Vec
instead of lowering to `memcpy`.
2021-08-07 22:56:30 +01:00
Jack Grigg
96d2464a51 age-core: Add a test for read::legacy_age_stanza 2021-08-07 22:21:17 +01:00
Jack Grigg
7243768a61 age-core: Un-nest Base64 decoding in read::wrapped_encoded_data
Instead of checking that each line is individually valid Base64, just
check line lengths. The no-padding-character check is moved to the end,
and the final Base64 decode is now load-bearing.

The parser structure has also been simplified using `nom` combinators.
2021-08-07 22:16:48 +01:00
Jack Grigg
7467e7b447 age-core: Use str::from_utf8_unchecked in read::arbitrary_string
The input bytes were already restricted to ASCII characters with values
33 to 126; an arbitrary sequence of these will always be valid UTF-8.
2021-08-07 22:10:09 +01:00
Jack Grigg
bfb0e0e021 rand 0.8 and rsa 0.5
rand 0.7 is kept as a dependency of age due to x25519-dalek 1.*.
2021-08-07 07:35:08 +01:00
Jack Grigg
3cca6a03cc secrecy 0.8 2021-08-07 07:34:41 +01:00
Jack Grigg
215b1b0847 Bump MSRV to 1.51.0 2021-08-07 07:33:56 +01:00
Jack Grigg
dfd472006a Use new broken_intra_doc_links lint name
MSRV is now past 1.48.0.
2021-05-14 21:04:04 +01:00
Jack Grigg
a208150631 v0.6.0 2021-05-02 12:50:41 +12:00
Jack Grigg
8fc525b86a Changelog updates 2021-05-02 12:41:37 +12:00
Jack Grigg
cffb64622e Bump KDF dependencies 2021-05-02 11:20:16 +12:00
Jack Grigg
42b7ce6958 age-core: Start plugin binaries in a temporary working directory
We don't want plugin binaries to make any assumptions about where they
are run from. The easiest way to ensure this is to always run them from
a fresh temporary directory.

Closes str4d/rage#200.
2021-02-08 01:01:36 +00:00
Jack Grigg
395502f503 age-core: Add missing entry for age_core::plugin module 2021-02-05 23:49:13 +00:00
Jack Grigg
cd0d79e14c plugins: Extend recipient-v1 state machine with add-identities message
This enables plugins to wrap file keys to identities, for example when
the plugin is built around a symmetric primitive (since we do not want
the recipients encoding to ever contain secrets).
2021-02-05 23:49:13 +00:00