age: Derive Eq on x25519::Recipient in addition to PartialEq

This commit is contained in:
str4d 2023-12-17 22:49:26 +00:00 committed by GitHub
parent 81acb7773c
commit 39dddda54a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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, PartialEq)]
#[derive(Clone, PartialEq, Eq)]
pub struct Recipient(PublicKey);
impl std::str::FromStr for Recipient {