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
8b0b65e98a
Merge pull request #522 from str4d/release-workflow-0.11
...
Release workflow updates for 0.11.0
2024-08-28 09:22:54 -07:00
Jack Grigg
9343af9324
CI: Generate Artifact Attestations for release artifacts
2024-08-28 16:10:33 +00:00
Jack Grigg
05f996c919
CI: Add ubuntu-24.04
to release testing
2024-08-28 15:47:41 +00:00
Jack Grigg
e67f4016dc
CI: Remove macos-11
from release testing
...
It was removed by GitHub in Q2 2024.
2024-08-28 15:45:59 +00:00
Jack Grigg
0cdde60315
CI: Build releases for arm64-darwin
2024-08-28 15:44:47 +00:00
Jack Grigg
917fc489f6
CI: Build x86_64-darwin
release with macos-13
runner
...
`macos-latest` now points to `macos-14` which is an ARM64 chip.
2024-08-28 15:42:21 +00:00
Jack Grigg
c5f0d61400
Merge pull request #521 from str4d/374-pipe-input-with-passphrase
...
rage: Allow piping input when encrypting with passphrase on Unix
2024-08-28 07:27:29 -07:00
Jack Grigg
a709c93c92
rage: Allow piping input when encrypting with passphrase on Unix
...
Closes str4d/rage#374 .
2024-08-28 14:17:03 +00:00
Jack Grigg
51760e34ba
Merge pull request #513 from BoostCookie/betterCompletions
...
Better completions
2024-08-28 05:44:15 -07:00
Stefan Gehr
d483e0b069
cargo fmt --all
2024-08-28 10:41:42 +02:00
Stefan Gehr
5eb44a157e
Use DirPath for output of rage-keygen as overwriting is not allowed
2024-08-28 10:41:14 +02:00
Jack Grigg
b179b7cedd
Merge pull request #520 from str4d/383-scrypt-enc-work-factor
...
age: Add `scrypt::Recipient::set_work_factor` for overriding default
2024-08-27 22:24:42 -07:00
Jack Grigg
67a539791b
age: Adjust scrypt::Identity::set_max_work_factor
docs
...
They are now consistent with `scrypt::Recipient::set_work_factor`.
2024-08-28 05:16:32 +00:00
Jack Grigg
e84159365d
age: Add scrypt::Recipient::set_work_factor
for overriding default
...
This can only be configured by using `scrypt::Recipient` directly in a
library context. The helper method `Encryptor::with_user_passphrase`
does not expose this, and `rage` continues to use the default.
Closes str4d/rage#383 .
2024-08-28 05:16:32 +00:00
Jack Grigg
84eacb7271
Merge pull request #519 from str4d/484-identity-file-newline-fix
...
age: Don't exit peeking state if entire identity file fits in the buffer
2024-08-27 20:05:46 -07: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
303fa6ebe1
rage: Add CLI test exposing bug with single-line identity files
...
Specifically, a single line and no trailing newline.
2024-08-28 02:41:36 +00:00
Jack Grigg
d76c85d585
Merge pull request #518 from str4d/380-expose-ife-methods
...
Refactor `IdentityFile` APIs
2024-08-26 20:57:55 -07: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
f243d63c31
age: Improve documentation of Callbacks
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
8dcdacc1ac
age: Make recipients from encrypted identities more efficient
...
We now merge plugin recipients together, so we only run each plugin once
during encryption.
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
2f9cf3f86f
age: Extract RecipientsAccumulator
from cli_common::read_recipients
2024-08-27 03:47:40 +00:00
Jack Grigg
d31fb568b7
age: Pass entire IdentityFile
to parse_identity_files
closure
2024-08-23 22:49:47 +00:00
Jack Grigg
5086bd65d9
age: Remove two unnecessary clones from IdentityFileEntry
decryption
2024-08-23 20:32:28 +00:00
Jack Grigg
5e88d75195
Merge pull request #517 from str4d/updates-0.11
...
Updates for 0.11.0
2024-08-23 11:39:48 -07:00
Jack Grigg
8688929723
Use stable toolchain for rust-analyzer in VS Code
2024-08-23 15:58:15 +00:00
Jack Grigg
cb36c4cd53
i18n-embed 0.15
2024-08-23 15:58:15 +00:00
Jack Grigg
f64f110f3e
cargo update
2024-08-23 14:55:09 +00:00
Jack Grigg
dc885d86a1
cargo vet regenerate imports
2024-08-23 14:06:36 +00:00
Jack Grigg
cf96347fbe
Merge pull request #516 from str4d/515-cli-common-feature-bugs
...
age: Fix feature flag combination bugs in `cli_common` module
2024-08-23 06:40:22 -07:00
Jack Grigg
7e3c62b98b
age: Fix feature flag combination bugs in cli_common
module
2024-08-23 12:37:24 +00:00
Jack Grigg
0cf17d916a
Merge pull request #514 from str4d/403-labels
...
Implement labels
2024-08-23 05:06:16 -07:00
Jack Grigg
3c9483f78f
age-plugin: Commit to order in which RecipientPluginV1
methods are called
2024-08-23 11:48:39 +00:00
Jack Grigg
9476af8e1f
age-plugin: Add labels extension to recipient-v1
2024-08-12 04:36:12 +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
8091015514
age: Add test that X25519 and scrypt recipients are incompatible
2024-08-10 06:53:39 +00:00
Stefan Gehr
26ebfbfc88
add value hints to rage-mount completions
2024-08-09 11:13:30 +02:00
Stefan Gehr
daf0829142
add value hints to rage-keygen completions
2024-08-09 11:13:21 +02:00
Stefan Gehr
4ff5e01ae9
add value hints to rage completions
2024-08-09 11:03:56 +02:00
Jack Grigg
d2c2e895bf
Merge pull request #511 from str4d/494-fix-plugin-helper
...
age-plugin: Fix `run_state_machine` to enable recipient-only or identity-only plugins
2024-08-05 01:51:48 +01:00
Jack Grigg
2eec45718c
age-plugin: Slightly improve trait documentation
2024-08-05 00:42:04 +00:00
Jack Grigg
2f79c8201b
age-plugin: Replace run_state_machine
arguments with a trait
2024-08-05 00:05:35 +00:00
Jack Grigg
18b27b377d
age-plugin: Add impls of state machine traits for Infallible
...
This enables representing a plugin without a recipient or identity
handler in the type system.
2024-08-04 23:49:10 +00:00
Jack Grigg
0689e95927
Revert "age-plugin: Make arguments to run_state_machine
optional"
...
This reverts commit 480c621a40
.
2024-08-04 21:49:47 +00:00
Jack Grigg
a510e76bf8
Merge pull request #507 from str4d/504-the-day-of-reckoning
...
Remove split between recipient and passphrase encryption
2024-08-04 20:51:44 +01:00
Jack Grigg
f69c29bf6f
age: Clean up crate documentation
2024-07-29 03:05:38 +00:00