mirror of
https://github.com/str4d/rage.git
synced 2025-04-04 11:27:43 +03:00
Merge pull request #429 from gibbz00/eq_hash
Derive `Hash` for `Recipient`.
This commit is contained in:
commit
08f5723ea4
2 changed files with 2 additions and 2 deletions
|
@ -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.
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue