interpolate now takes an IntoIterator

This commit is contained in:
zer0x64 2020-01-22 16:36:41 -05:00
parent 1b35f6d8dd
commit 2ef5832b0c
2 changed files with 22 additions and 6 deletions

View File

@ -82,8 +82,13 @@ impl Sharks {
/// secret = sharks.recover(&shares); /// secret = sharks.recover(&shares);
/// // Not enough shares to recover secret /// // Not enough shares to recover secret
/// assert!(secret.is_err()); /// assert!(secret.is_err());
pub fn recover(&self, shares: &[Share]) -> Result<Vec<u8>, &str> { pub fn recover<'a, I, J>(&self, shares: I) -> Result<Vec<u8>, &str>
let shares_x: HashSet<u8> = shares.iter().map(|s| s.x.0).collect(); where
I: IntoIterator<Item = &'a Share, IntoIter = J>,
J: Iterator<Item = &'a Share> + Clone,
{
let shares = shares.into_iter();
let shares_x: HashSet<u8> = shares.clone().map(|s| s.x.0).collect();
if shares_x.len() < self.0 as usize { if shares_x.len() < self.0 as usize {
Err("Not enough shares to recover original secret") Err("Not enough shares to recover original secret")

View File

@ -9,14 +9,25 @@ use super::share::Share;
// The expected `shares` argument format is the same as the output by the `get_evaluator´ function. // 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 (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. // where each element corresponds to one of the secret's byte chunks.
pub fn interpolate(shares: &[Share]) -> Vec<u8> { pub fn interpolate<'a, I, J>(shares: I) -> Vec<u8>
(0..shares[0].y.len()) where
I: IntoIterator<Item = &'a Share, IntoIter = J>,
J: Iterator<Item = &'a Share> + Clone,
{
let shares = shares.into_iter();
(0..shares
.clone()
.peekable()
.peek()
.expect("There should be at least one share")
.y
.len())
.map(|s| { .map(|s| {
shares shares
.iter() .clone()
.map(|s_i| { .map(|s_i| {
shares shares
.iter() .clone()
.filter(|s_j| s_j.x != s_i.x) .filter(|s_j| s_j.x != s_i.x)
.map(|s_j| s_j.x / (s_j.x - s_i.x)) .map(|s_j| s_j.x / (s_j.x - s_i.x))
.product::<GF256>() .product::<GF256>()