|
@@ -27,7 +27,7 @@ pub enum PacketHeader {
|
|
|
Encrypted(u128),
|
|
|
}
|
|
|
|
|
|
-#[derive(Default, Clone, PartialEq, serde::Serialize, serde::Deserialize)]
|
|
|
+#[derive(Default, Clone, serde::Serialize, serde::Deserialize)]
|
|
|
pub struct PublicKey(ed25519_dalek::PublicKey);
|
|
|
|
|
|
impl PublicKey {
|
|
@@ -36,6 +36,12 @@ impl PublicKey {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+impl PartialEq for PublicKey {
|
|
|
+ fn eq(&self, other: &Self) -> bool {
|
|
|
+ self.0 == other.0
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
// *technically* there may be equivalence classes, but we really don't care about those in this
|
|
|
// context.
|
|
|
impl Eq for PublicKey {
|