age: Add IdentityFile::to_recipients

This commit is contained in:
Jack Grigg 2024-08-24 02:12:31 +00:00
parent 2f9cf3f86f
commit 52fd675bbd
2 changed files with 28 additions and 0 deletions

View file

@ -11,6 +11,7 @@ to 1.0.0 are beta releases.
## [Unreleased]
### Added
- `age::Decryptor::{decrypt, decrypt_async, is_scrypt}`
- `age::IdentityFile::to_recipients`
- `age::scrypt`, providing recipient and identity types for passphrase-based
encryption.
- Partial French translation!

View file

@ -134,6 +134,23 @@ impl IdentityFile {
Ok(IdentityFile { identities })
}
/// Returns recipients for the identities in this file.
///
/// Plugin identities will be merged into one [`Recipient`] per unique plugin.
///
/// [`Recipient`]: crate::Recipient
pub fn to_recipients(
&self,
callbacks: impl Callbacks,
) -> Result<Vec<Box<dyn crate::Recipient + Send>>, EncryptError> {
let mut recipients = RecipientsAccumulator::new();
recipients.with_identities_ref(self);
recipients.build(
#[cfg(feature = "plugin")]
callbacks,
)
}
/// Returns the identities in this file.
pub fn into_identities(self) -> Vec<IdentityFileEntry> {
self.identities
@ -188,6 +205,16 @@ impl RecipientsAccumulator {
}
}
pub(crate) fn with_identities_ref(&mut self, identity_file: &IdentityFile) {
for entry in &identity_file.identities {
match entry {
IdentityFileEntry::Native(i) => self.recipients.push(Box::new(i.to_public())),
#[cfg(feature = "plugin")]
IdentityFileEntry::Plugin(i) => self.plugin_identities.push(i.clone()),
}
}
}
#[cfg_attr(not(feature = "plugin"), allow(unused_mut))]
pub(crate) fn build(
mut self,