diff --git a/radicle-crypto/src/lib.rs b/radicle-crypto/src/lib.rs index c48b0a2f..cad67d4b 100644 --- a/radicle-crypto/src/lib.rs +++ b/radicle-crypto/src/lib.rs @@ -1,3 +1,4 @@ +use std::cmp::Ordering; use std::{fmt, ops::Deref, str::FromStr}; use ed25519_compact as ed25519; @@ -156,6 +157,18 @@ impl PublicKey { #[derive(Clone, Debug, Eq, PartialEq, Hash)] pub struct SecretKey(ed25519::SecretKey); +impl PartialOrd for SecretKey { + fn partial_cmp(&self, other: &Self) -> Option { + Some(self.cmp(other)) + } +} + +impl Ord for SecretKey { + fn cmp(&self, other: &Self) -> Ordering { + self.0.cmp(&other.0) + } +} + impl zeroize::Zeroize for SecretKey { fn zeroize(&mut self) { self.0.zeroize();