mirror of
https://github.com/str4d/rage.git
synced 2025-04-05 03:47:46 +03:00
age: Add IdentityFile::to_recipients
This commit is contained in:
parent
2f9cf3f86f
commit
52fd675bbd
2 changed files with 28 additions and 0 deletions
|
@ -11,6 +11,7 @@ to 1.0.0 are beta releases.
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
### Added
|
### Added
|
||||||
- `age::Decryptor::{decrypt, decrypt_async, is_scrypt}`
|
- `age::Decryptor::{decrypt, decrypt_async, is_scrypt}`
|
||||||
|
- `age::IdentityFile::to_recipients`
|
||||||
- `age::scrypt`, providing recipient and identity types for passphrase-based
|
- `age::scrypt`, providing recipient and identity types for passphrase-based
|
||||||
encryption.
|
encryption.
|
||||||
- Partial French translation!
|
- Partial French translation!
|
||||||
|
|
|
@ -134,6 +134,23 @@ impl IdentityFile {
|
||||||
Ok(IdentityFile { identities })
|
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.
|
/// Returns the identities in this file.
|
||||||
pub fn into_identities(self) -> Vec<IdentityFileEntry> {
|
pub fn into_identities(self) -> Vec<IdentityFileEntry> {
|
||||||
self.identities
|
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))]
|
#[cfg_attr(not(feature = "plugin"), allow(unused_mut))]
|
||||||
pub(crate) fn build(
|
pub(crate) fn build(
|
||||||
mut self,
|
mut self,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue