Commit graph

94 commits

Author SHA1 Message Date
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
0e860a672a base64 0.13 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
77273e0378 v0.5.0 2020-11-22 18:51:27 +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
88d8de69ad hmac 0.10 2020-11-02 00:57:48 +00:00
Jack Grigg
74e294c117 Fix benchmark workflow 2020-10-20 23:48:28 +01: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
a2002bc5b1 Update READMEs 2020-07-29 02:06:18 +12:00
Jack Grigg
567d6e048f Bump MSRV to 1.41.0
We rely on digest 0.9-era RustCrypto crates, which all have MSRV 1.41.0.
2020-07-29 02:02:13 +12: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
52171c3ec0 Update changelogs 2020-07-20 23:21:52 +12:00
Jack Grigg
367feb3aba Move age::FileKey to age_core::format::FileKey 2020-07-20 23:21:52 +12:00
Jack Grigg
ce1c22d849 Move age::Stanza to age_core::format::Stanza 2020-07-20 23:02:09 +12:00
Jack Grigg
3ce96f6460 hkdf 0.9 2020-07-13 12:48:09 +12:00
Jack Grigg
23938a95fa base64 0.12 2020-06-13 19:55:01 +12:00
Jack Grigg
a1f6c40248 Update digest-related dependencies
We upgrade the hkdf, hmac, and rsa crates in lock-step because their
usages all depend on the sha2 crate, and upgrading from digest 0.8 to
0.9 is a breaking change that would otherwise require having two
versions of the sha2 crate.

We upgrade various other dependencies to ensure that we drop older
digest-related crate versions within our dependency tree where possible.

As a nice bonus, we can now depend on a published version of the rsa
crate that includes RSAES-OAEP.
2020-06-13 19:51:02 +12:00
Jack Grigg
16ba5fad5d Forbid unsafe code in all libraries and binaries
Anything unsafe we might want to depend on for performance would live in
a dependency.
2020-06-02 23:04:12 +12:00
Jack Grigg
2291ccbcf8 age_core: Expose primitives for AEAD and HKDF
This enables reuse of these common primitives within the upcoming plugin
system, alongside the core parsers and serializers.
2020-04-26 00:10:38 +12:00
Jack Grigg
9adf7e5749 v0.4.0 2020-03-25 11:55:40 +13:00
Jack Grigg
84ca61d44c v0.3.1 2020-02-11 13:49:59 +00:00
Dimitris Apostolou
b1fc799748
Upgrade cookie-factory to 0.3.1 2020-02-10 16:16:57 +02:00
Jack Grigg
6eb85cb74a v0.3.0 2020-02-09 20:46:52 +00:00
Jack Grigg
24dd78f2b4 Add age-core changelog 2020-02-09 13:57:59 +00:00
Jack Grigg
595131658c Explicitly reject padding characters during stanza parsing
The base64 crate will parse padding characters regardless of the config
type, so we need to enforce canonical stanzas ourselves.
2020-02-09 13:51:35 +00:00
Jack Grigg
f5c6089cd8 Allow age stanzas to have an empty body 2020-02-09 02:41:53 +00:00
Jack Grigg
a4ae701670 Rewrite age stanza parser to be much simpler 2020-02-09 02:16:43 +00:00
Jack Grigg
cfdf0bffba Add test case showing standalone age_stanza parser usage
When parsed alone, an age stanza requires two separating newlines in
order for the streaming body parser to determine when the body ends.
2020-02-02 22:11:20 +00:00
Jack Grigg
583453e637 Move age stanza parsing to age-core crate
Also refactors all recipient lines to write using the new serializer in
the age-core crate.
2020-02-02 21:57:17 +00:00
Jack Grigg
a45b0ee775 Empty age-core library crate 2020-02-02 21:23:46 +00:00