mirror of
https://github.com/str4d/rage.git
synced 2025-04-03 19:07:42 +03:00
Merge pull request #420 from gibbz00/public_key_partial_eq
Implement `Debug, PartialEq, Eq` for `age::x25519::Recipient`.
This commit is contained in:
commit
1a123206fb
2 changed files with 8 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue