mirror of
https://github.com/str4d/rage.git
synced 2025-04-04 19:37:51 +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]
|
## [Unreleased]
|
||||||
### Added
|
### Added
|
||||||
- `impl Eq for age::ssh::{ParseRecipientKeyError, UnsupportedKey}`
|
- `impl Eq for age::ssh::{ParseRecipientKeyError, UnsupportedKey}`
|
||||||
|
- `impl {Debug, PartialEq, Eq} for age::x25519::Recipient`
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- MSRV is now 1.65.0.
|
- 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
|
/// 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.
|
/// age-encrypted file alone if it is encrypted to a certain recipient.
|
||||||
#[derive(Clone)]
|
#[derive(Clone, PartialEq, Eq)]
|
||||||
pub struct Recipient(PublicKey);
|
pub struct Recipient(PublicKey);
|
||||||
|
|
||||||
impl std::str::FromStr for Recipient {
|
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 {
|
impl crate::Recipient for Recipient {
|
||||||
fn wrap_file_key(&self, file_key: &FileKey) -> Result<Vec<Stanza>, EncryptError> {
|
fn wrap_file_key(&self, file_key: &FileKey) -> Result<Vec<Stanza>, EncryptError> {
|
||||||
let rng = OsRng;
|
let rng = OsRng;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue