Make SecretKeySet cloneable. Rust 1.42.0. (#101)

master
Andreas Fackler 5 years ago committed by GitHub
parent d18269ebca
commit 8ec1e20fa3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      src/lib.rs

@ -625,6 +625,7 @@ impl PublicKeySet {
} }
/// A secret key and an associated set of secret key shares. /// A secret key and an associated set of secret key shares.
#[derive(Clone, PartialEq, Eq)]
pub struct SecretKeySet { pub struct SecretKeySet {
/// 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