Merge pull request #420 from gibbz00/public_key_partial_eq

Implement `Debug, PartialEq, Eq`  for `age::x25519::Recipient`.
This commit is contained in:
str4d 2023-12-27 11:04:17 +00:00 committed by GitHub
commit 1a123206fb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 1 deletions

View file

@ -11,6 +11,7 @@ to 1.0.0 are beta releases.
## [Unreleased]
### Added
- `impl Eq for age::ssh::{ParseRecipientKeyError, UnsupportedKey}`
- `impl {Debug, PartialEq, Eq} for age::x25519::Recipient`
### Changed
- MSRV is now 1.65.0.

View file

@ -146,7 +146,7 @@ impl crate::Identity for Identity {
///
/// This recipient type is anonymous, in the sense that an attacker can't tell from the
/// age-encrypted file alone if it is encrypted to a certain recipient.
#[derive(Clone)]
#[derive(Clone, PartialEq, Eq)]
pub struct Recipient(PublicKey);
impl std::str::FromStr for Recipient {
@ -184,6 +184,12 @@ impl fmt::Display for Recipient {
}
}
impl fmt::Debug for Recipient {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", self)
}
}
impl crate::Recipient for Recipient {
fn wrap_file_key(&self, file_key: &FileKey) -> Result<Vec<Stanza>, EncryptError> {
let rng = OsRng;