Merge pull request #429 from gibbz00/eq_hash

Derive `Hash` for `Recipient`.
This commit is contained in:
str4d 2024-01-01 13:46:37 +00:00 committed by GitHub
commit 08f5723ea4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

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