Make `PublicKeySet` orderable, too.

master
Andreas Fackler 6 years ago committed by Vladimir Komendantskiy
parent b3c2c0501c
commit 784c815fe7
  1. 2
      src/lib.rs

@ -526,7 +526,7 @@ impl Hash for DecryptionShare {
} }
/// A public key and an associated set of public key shares. /// A public key and an associated set of public key shares.
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, Eq)] #[derive(Serialize, Deserialize, Clone, Debug, PartialEq, Eq, Ord, PartialOrd)]
pub struct PublicKeySet { pub struct PublicKeySet {
/// The coefficients of a polynomial whose value at `0` is the "master key", and value at /// The coefficients of a polynomial whose value at `0` is the "master key", and value at
/// `i + 1` is key share number `i`. /// `i + 1` is key share number `i`.

Loading…
Cancel
Save