Commit graph

59 commits

Author SHA1 Message Date
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
5c67ec2180 Migrate to base64 0.21 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
de96ae7153 Fix clippy lints 2022-10-26 08:58:13 +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
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
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
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
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
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
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
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
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
Jack Grigg
91804960d9 plugins: Change recipient-v1 state machine phase 2 to be bidirectional
The previous iteration of the recipient-v1 state machine assumed that
user interaction would never be required during encryption. This is
almost certainly true for asymmetric recipients, but is not the case
for symmetric recipients (e.g. the symmetric key might be stored on a
hardware token that requires a PIN).

The recipient-v1 state machine now uses a bi-directional second phase,
matching the identity-v1 state machine. It defines the same commands
for interacting with users.
2021-02-05 23:49:11 +00:00
Jack Grigg
2f902ae05f nom 6 2021-01-12 13:38:40 +00:00
Jack Grigg
21013e8c61 age-core: Assume two commands in Connection::unidir_receive
This places the command parsing function right next to the command
definitions.
2021-01-11 01:39:11 +00:00
Jack Grigg
7a22329489 Fix a bunch of clippy lints 2021-01-10 17:09:24 +00:00
Jack Grigg
f4bee7af74 Move plugin support out from behind the unstable feature flag
FiloSottile/age has implemented the client side of the specification,
and is able to communicate with our plugin side. This is sufficient for
releasing beta plugin support!
2021-01-10 15:11:12 +00:00
Jack Grigg
d0d55872a7 age-core: Add plaintext size argument to aead_decrypt
This implements the same mitigation as FiloSottile/age for the multi-key
attack. The age crate was already checking these lengths for built-in
recipient types; this change extends the mitigation to other crates that
reuse the age primitives, such as age plugins.
2020-12-31 02:56:50 +00:00
Jack Grigg
dfc37d2979 Move plugin support behind the unstable feature flag
This enables support to be merged (and part of crate releases) before the
plugin spec is finalised.
2020-12-31 01:50:56 +00:00
Jack Grigg
25fbf45a60 Identity plugin v1 protocol 2020-12-31 01:50:56 +00:00
Jack Grigg
2f7510cfaf Recipient plugin v1 protocol 2020-12-30 23:51:39 +00:00
Jack Grigg
91ee53d299 age-core: Connection and state machine logic for plugins 2020-12-30 04:58:45 +00:00
Jack Grigg
dc2ae5c5ff Serialize stanzas with an explicit short last body line.
This enables a stream of stanzas to be parsed, such as in the upcoming
plugin IPC. Previously the parser could not distinguish an
stanza with a body of length 0 mod 64 from an incomplete stanza. This did
not cause issues for V1 header parsing because the recipients list is
always terminated with the MAC line, which has a distinct prefix.

V1 header parsing now accepts either kind of stanza body encoding.
2020-12-30 04:45:18 +00:00
Jack Grigg
e6387bf5b7 Make the trailing newline a formal part of the age stanza 2020-12-13 20:58:24 +00:00
Jack Grigg
6c12ac25c4 Make the stanza prefix -> a formal part of the age stanza 2020-12-13 19:56:26 +00:00
Jack Grigg
06b627ef6c age-core: Fix comment 2020-11-22 18:44:47 +00:00
Jack Grigg
dde4c01c4e chacha20poly1305 0.7 and c2-chacha 0.3
Improves throughput benchmarks by ~20%, due to a refactor included in
poly1305 0.6:
    https://github.com/RustCrypto/universal-hashes/pull/48
2020-11-03 02:05:22 +00:00
Jack Grigg
b504bf8d4c age-core: Pass stanza args to write::age_stanza using AsRef<[str]> 2020-08-16 20:43:08 +01:00
Jack Grigg
57900c9793 age-core: Expose grease gun 2020-08-16 20:35:41 +01:00
Jack Grigg
450e19e44f age-core: Rework stanza documentation 2020-07-29 00:45:45 +12:00
Jack Grigg
0eca7e21bc age-core: Catch intra-doc link errors 2020-07-20 23:22:08 +12:00
Jack Grigg
367feb3aba Move age::FileKey to age_core::format::FileKey 2020-07-20 23:21:52 +12:00