Commit graph

149 commits

Author SHA1 Message Date
Jack Grigg
a82a76a849 v0.11.1 2024-11-18 07:11:33 +00:00
Jack Grigg
741de973ee Merge branch 'bugfix-0.10.1' into bugfix-0.11.1 2024-11-18 07:04:30 +00:00
Jack Grigg
62f15b9d9d v0.10.1 2024-11-18 06:56:17 +00:00
Jack Grigg
e48bab7b3c Merge branch 'bugfix-0.9.3' into bugfix-0.10.1 2024-11-18 06:53:17 +00:00
Jack Grigg
2b501beff2 v0.9.3 2024-11-18 06:46:08 +00:00
Jack Grigg
bbe157839f Merge branch 'bugfix-0.8.2' into bugfix-0.9.3 2024-11-18 06:44:52 +00:00
Jack Grigg
8673d5687e v0.8.2 2024-11-18 06:42:27 +00:00
Jack Grigg
951ffb9ede Merge branch 'bugfix-0.7.2' into bugfix-0.8.2 2024-11-18 06:40:52 +00:00
Jack Grigg
f8d0ef7154 v0.7.2 2024-11-18 06:40:16 +00:00
Jack Grigg
650081765f Merge branch 'bugfix-0.6.1' into bugfix-0.7.2 2024-11-18 05:30:01 +00:00
Jack Grigg
5501bb6220 v0.6.1 2024-11-18 05:24:53 +00:00
Jack Grigg
703152ecfa Restrict set of valid characters for plugin names
Previously, plugin names were allowed to be `1*VCHAR`, which permits
path separators and parent directory syntax. Under certain conditions,
this could cause `rage` to execute a different binary than intended when
launching a plugin.

Plugin names are now restricted to alphanumeric characters or +-._ which
covers all binary names generally observed in practice.
2024-11-18 04:58:13 +00:00
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
195b86b6bc age: Add streamlined APIs for encryption and decryption
Closes str4d/rage#333.
2024-08-30 11:34:01 -04:00
Jack Grigg
9ab26bf360 age: Take recipients by reference in Encryptor::with_recipients
This aligns it with `Decryptor`, and means that recipients can be
used to encrypt multiple files without cloning.

Part of str4d/rage#353.
2024-08-30 10:40:34 -04:00
Jack Grigg
5a57e120a2 age: Don't exit peeking state if entire identity file fits in the buffer
This ensures we can call `PeekableReader::reset` when the file is a
single line without a trailing newline character, which rage-keygen does
not generate but users can.

Closes str4d/rage#484.
2024-08-28 02:56:58 +00:00
Jack Grigg
5e57ef07ca age: Return Box<dyn Identity> from IdentityFile::into_identities
This is doable now that `IdentityFile` stores callbacks, and is more
useful to crate users than `IdentityFileEntry`. The one place we were
relying on the latter was in `rage-keygen` to distinguish plugin
identities (which cannot be re-encoded as recipients); we now move that
functionality into the `age` crate.
2024-08-27 03:47:40 +00:00
Jack Grigg
ae2434216d age: Store C: Callbacks inside IdentityFile
This removes the need for explicit `callbacks` arguments in methods that
may act on plugin identities, and instead enables the caller to choose
whether or not to provide callbacks independently of plugin support
being compiled in. Enabling plugin support without providing callbacks
now has well-defined fallback behaviour via the default `NoCallbacks`
struct.
2024-08-27 03:47:40 +00:00
Jack Grigg
52fd675bbd age: Add IdentityFile::to_recipients 2024-08-27 03:47:40 +00:00
Jack Grigg
cb36c4cd53 i18n-embed 0.15 2024-08-23 15:58:15 +00:00
Jack Grigg
2d29668712 age: Add labels extension to client side of recipient-v1 2024-08-12 04:35:52 +00:00
Jack Grigg
8f1d6af149 age: Return label set from Recipient::wrap_file_key 2024-08-12 04:35:07 +00:00
Jack Grigg
219ac41b60 age: Merge RecipientsDecryptor into Decryptor 2024-07-29 02:27:05 +00:00
Jack Grigg
a1f16094b8 age: Remove PassphraseDecryptor 2024-07-29 02:27:05 +00:00
Jack Grigg
f253ff2ff1 age: Expose scrypt::{Recipient, Identity} 2024-07-29 02:27:05 +00:00
Jack Grigg
67ee02b47e Update changelogs for partial French translations 2024-07-28 17:22:54 +00:00
Jack Grigg
e833cd19e4 v0.10.0 2024-02-04 22:33:22 +00:00
Jack Grigg
c56f6fba42 age: Mention ru in changelog 2024-02-03 10:28:47 +00:00
Jack Grigg
275d8f0b96 Reject weak ssh-rsa keys 2024-01-25 05:53:05 +00:00
Jack Grigg
8bd346d988 Add support for -R - and -i -
Closes str4d/rage#177.
2024-01-21 20:18:12 +00:00
Jack Grigg
e470fec9df Move read_recipients helper from rage into age::cli_common
This means we no longer need the more complex `parse_identity_files`
helper to be public. It also means we have closer control of the
internals of `read_recipients` and `read_identities`, which will be
necessary for standard input de-confliction (str4d/rage#177).
2024-01-21 03:25:29 +00:00
Jack Grigg
7c5d442fb9 De-duplicate the identity file parser
We use it during decryption to obtain identities, and during encryption
to convert identities into their corresponding recipients.
2024-01-20 06:51:54 +00:00
Jack Grigg
65bcfe2318 age: Add IdentityFile::from_input_reader 2024-01-15 19:19:16 +00:00
Jack Grigg
4ec6fb6312 Prevent rage-keygen from overwriting existing key files
Closes str4d/rage#433.
2024-01-07 19:07:56 +00:00
gibbz00
33b66119f1 Derive Hash for Recipient. 2024-01-01 14:35:24 +01:00
str4d
1a123206fb
Merge pull request #420 from gibbz00/public_key_partial_eq
Implement `Debug, PartialEq, Eq`  for `age::x25519::Recipient`.
2023-12-27 11:04:17 +00:00
Jack Grigg
6f295157c8 age: Update changelog with new x25519::Recipient trait impls 2023-12-27 10:57:12 +00:00
str4d
0a64d38208
Merge pull request #424 from str4d/418-scrypt-very-fast-machines
scrypt: Increase `log_n` until it is measurable
2023-12-27 10:50:09 +00:00
Jack Grigg
936ad71500 ssh: Return a specific error for too-large RSA moduli
Exposing this in `rage` also results in us fixing an (unlikely) error
where an OpenSSH private key containing an invalid public key (but that
is otherwise valid) is passed as an identity during encryption.
2023-12-17 22:44:57 +00:00
Jack Grigg
e9eb2c2dd7 age: Document RSA pubkey size limit introduction in changelog
This was accidentally introduced via the `rsa 0.7` migration. It is
however a useful default.

Closes str4d/rage#421.
2023-12-17 22:44:57 +00:00
Jack Grigg
967750cecf scrypt: Increase log_n until it is measurable
Closes str4d/rage#418.
2023-12-17 17:32:52 +00:00
Jack Grigg
634e56787b age: Update changelog with UiCallbacks fixes 2023-08-07 09:35:21 +00:00
Jack Grigg
f2731ecc43 Migrate to rsa 0.9 2023-08-06 15:06:12 +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
8f4a0f40ea v0.9.2 2023-06-12 19:50:05 +00:00
Jack Grigg
3340db8655 Fix changelog bugs and add missing entry 2023-06-12 19:47:31 +00:00
Jack Grigg
c1fe38e149 Document PINENTRY_PROGRAM environment variable
Part of str4d/rage#280.
2023-06-12 19:23:36 +00:00
Jack Grigg
37012baa4d age: Add Decryptor::new_async_buffered
This is significantly more efficient than `Decryptor::new_async` at
parsing headers, due to avoiding repeated short reads.
2023-06-12 18:25:09 +00:00