diff --git a/src/lib.rs b/src/lib.rs index 0580124..f3ece9b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -82,8 +82,13 @@ impl Sharks { /// secret = sharks.recover(&shares); /// // Not enough shares to recover secret /// assert!(secret.is_err()); - pub fn recover(&self, shares: &[Share]) -> Result, &str> { - let shares_x: HashSet = shares.iter().map(|s| s.x.0).collect(); + pub fn recover<'a, I, J>(&self, shares: I) -> Result, &str> + where + I: IntoIterator, + J: Iterator + Clone, + { + let shares = shares.into_iter(); + let shares_x: HashSet = shares.clone().map(|s| s.x.0).collect(); if shares_x.len() < self.0 as usize { Err("Not enough shares to recover original secret") diff --git a/src/math.rs b/src/math.rs index a760cb0..70a0e2a 100644 --- a/src/math.rs +++ b/src/math.rs @@ -9,14 +9,25 @@ use super::share::Share; // The expected `shares` argument format is the same as the output by the `get_evaluatorĀ“ function. // Where each (key, value) pair corresponds to one share, where the key is the `x` and the value is a vector of `y`, // where each element corresponds to one of the secret's byte chunks. -pub fn interpolate(shares: &[Share]) -> Vec { - (0..shares[0].y.len()) +pub fn interpolate<'a, I, J>(shares: I) -> Vec +where + I: IntoIterator, + J: Iterator + Clone, +{ + let shares = shares.into_iter(); + (0..shares + .clone() + .peekable() + .peek() + .expect("There should be at least one share") + .y + .len()) .map(|s| { shares - .iter() + .clone() .map(|s_i| { shares - .iter() + .clone() .filter(|s_j| s_j.x != s_i.x) .map(|s_j| s_j.x / (s_j.x - s_i.x)) .product::()