Add Send + Sync to IdentityFile::into_identities output

This commit is contained in:
Jack Grigg 2025-03-21 18:11:43 +00:00
parent d7c727aef9
commit 7c5099fd47
5 changed files with 16 additions and 7 deletions

View file

@ -9,6 +9,12 @@ and this project adheres to Rust's notion of
to 1.0.0 are beta releases.
## [Unreleased]
### Changed
- `age::IdentityFile::into_identities` now returns
`Result<Vec<Box<dyn crate::Identity + Send + Sync>>, DecryptError>` instead of
`Result<Vec<Box<dyn crate::Identity>>, DecryptError>`. This re-enables
cross-thread uses of `IdentityFile`, which were unintentionally disabled in
0.11.0.
## [0.6.1, 0.7.2, 0.8.2, 0.9.3, 0.10.1, 0.11.1] - 2024-11-18
### Security

View file

@ -52,7 +52,7 @@ pub fn read_identities(
#[cfg(not(feature = "plugin"))]
let new_identities = new_identities.unwrap();
identities.extend(new_identities);
identities.extend(new_identities.into_iter().map(|i| i as _));
Ok(())
},

View file

@ -138,7 +138,7 @@ impl<R: io::Read, C: Callbacks> Identity<R, C> {
) -> Option<Result<age_core::format::FileKey, DecryptError>>
where
F: Fn(
Result<Box<dyn crate::Identity>, DecryptError>,
Result<Box<dyn crate::Identity + Send + Sync>, DecryptError>,
) -> Option<Result<age_core::format::FileKey, DecryptError>>,
{
match self.state.take().decrypt(self.filename.as_deref()) {

View file

@ -25,7 +25,7 @@ impl IdentityFileEntry {
pub(crate) fn into_identity(
self,
callbacks: impl Callbacks,
) -> Result<Box<dyn crate::Identity>, DecryptError> {
) -> Result<Box<dyn crate::Identity + Send + Sync>, DecryptError> {
match self {
IdentityFileEntry::Native(i) => Ok(Box::new(i)),
#[cfg(feature = "plugin")]
@ -184,14 +184,17 @@ impl<C: Callbacks> IdentityFile<C> {
/// Returns the identities in this file.
pub(crate) fn to_identities(
&self,
) -> impl Iterator<Item = Result<Box<dyn crate::Identity>, DecryptError>> + '_ {
) -> impl Iterator<Item = Result<Box<dyn crate::Identity + Send + Sync>, DecryptError>> + '_
{
self.identities
.iter()
.map(|entry| entry.clone().into_identity(self.callbacks.clone()))
}
/// Returns the identities in this file.
pub fn into_identities(self) -> Result<Vec<Box<dyn crate::Identity>>, DecryptError> {
pub fn into_identities(
self,
) -> Result<Vec<Box<dyn crate::Identity + Send + Sync>>, DecryptError> {
self.identities
.into_iter()
.map(|entry| entry.into_identity(self.callbacks.clone()))

View file

@ -457,7 +457,7 @@ mod tests {
let pk: x25519::Recipient = crate::x25519::tests::TEST_PK.parse().unwrap();
recipient_round_trip(
iter::once(&pk as _),
f.into_identities().unwrap().iter().map(|i| i.as_ref()),
f.into_identities().unwrap().iter().map(|i| i.as_ref() as _),
);
}
@ -469,7 +469,7 @@ mod tests {
let pk: x25519::Recipient = crate::x25519::tests::TEST_PK.parse().unwrap();
recipient_async_round_trip(
iter::once(&pk as _),
f.into_identities().unwrap().iter().map(|i| i.as_ref()),
f.into_identities().unwrap().iter().map(|i| i.as_ref() as _),
);
}