radix64::EncodeWriter<W> is only implemented for W: Write, so we can't
store it inside ArmoredWriter<W> without any bound, which would prevent
us from using ArmoredWriter with W: AsyncWrite + !Write.
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.
When OpenSSH introduced its current encrypted-key format, ssh-keygen
defaulted to "aes256-cbc" for the cipher. This was changed in OpenSSH 7.6
(released 2017-10-03) to "aes256-ctr", and is the same to this day.
Adding support for "aes256-cbc" ensures compatibility with all encrypted
keys generated by ssh-keygen in this format since it was introduced in
OpenSSH 6.5 (released 2014-01-30).
See also https://github.com/FiloSottile/age/issues/100
We only use clap to generate completions, and there are no changes since
their MSRV bump that materially affect completions (yet), so it's fine
to pin this for now.
Improves encryption throughput by around 60% over standard, and around
10% when compiled with the AVX2 flag, because c2-chacha uses AVX2 when
available.