Rework the vartime precomputation trait to be Option-al

This commit is contained in:
Henry de Valence 2019-02-12 12:28:24 -08:00
parent e693d7f020
commit 727ba86292
4 changed files with 117 additions and 54 deletions

View file

@ -136,19 +136,18 @@ impl VartimePrecomputedMultiscalarMul for VartimePrecomputedStraus {
} }
} }
fn vartime_mixed_multiscalar_mul<I, J, K>( fn optional_mixed_multiscalar_mul<I, J, K>(
&self, &self,
static_scalars: I, static_scalars: I,
dynamic_scalars: J, dynamic_scalars: J,
dynamic_points: K, dynamic_points: K,
) -> Self::Point ) -> Option<Self::Point>
where where
I: IntoIterator, I: IntoIterator,
I::Item: Borrow<Scalar>, I::Item: Borrow<Scalar>,
J: IntoIterator, J: IntoIterator,
J::Item: Borrow<Scalar>, J::Item: Borrow<Scalar>,
K: IntoIterator, K: IntoIterator<Item = Option<Self::Point>>,
K::Item: Borrow<Self::Point>,
{ {
let static_nafs = static_scalars let static_nafs = static_scalars
.into_iter() .into_iter()
@ -159,10 +158,14 @@ impl VartimePrecomputedMultiscalarMul for VartimePrecomputedStraus {
.map(|c| c.borrow().non_adjacent_form(5)) .map(|c| c.borrow().non_adjacent_form(5))
.collect::<Vec<_>>(); .collect::<Vec<_>>();
let dynamic_lookup_tables = dynamic_points let dynamic_lookup_tables = match dynamic_points
.into_iter() .into_iter()
.map(|P| NafLookupTable5::<ProjectiveNielsPoint>::from(P.borrow())) .map(|P_opt| P_opt.map(|P| NafLookupTable5::<ProjectiveNielsPoint>::from(&P)))
.collect::<Vec<_>>(); .collect::<Option<Vec<_>>>()
{
Some(x) => x,
None => return None,
};
let sp = self.static_lookup_tables.len(); let sp = self.static_lookup_tables.len();
let dp = dynamic_lookup_tables.len(); let dp = dynamic_lookup_tables.len();
@ -197,6 +200,6 @@ impl VartimePrecomputedMultiscalarMul for VartimePrecomputedStraus {
S = R.to_projective(); S = R.to_projective();
} }
S.to_extended() Some(S.to_extended())
} }
} }

View file

@ -134,19 +134,18 @@ impl VartimePrecomputedMultiscalarMul for VartimePrecomputedStraus {
} }
} }
fn vartime_mixed_multiscalar_mul<I, J, K>( fn optional_mixed_multiscalar_mul<I, J, K>(
&self, &self,
static_scalars: I, static_scalars: I,
dynamic_scalars: J, dynamic_scalars: J,
dynamic_points: K, dynamic_points: K,
) -> Self::Point ) -> Option<Self::Point>
where where
I: IntoIterator, I: IntoIterator,
I::Item: Borrow<Scalar>, I::Item: Borrow<Scalar>,
J: IntoIterator, J: IntoIterator,
J::Item: Borrow<Scalar>, J::Item: Borrow<Scalar>,
K: IntoIterator, K: IntoIterator<Item = Option<Self::Point>>,
K::Item: Borrow<Self::Point>,
{ {
let static_nafs = static_scalars let static_nafs = static_scalars
.into_iter() .into_iter()
@ -157,10 +156,14 @@ impl VartimePrecomputedMultiscalarMul for VartimePrecomputedStraus {
.map(|c| c.borrow().non_adjacent_form(5)) .map(|c| c.borrow().non_adjacent_form(5))
.collect::<Vec<_>>(); .collect::<Vec<_>>();
let dynamic_lookup_tables = dynamic_points let dynamic_lookup_tables = match dynamic_points
.into_iter() .into_iter()
.map(|P| NafLookupTable5::<CachedPoint>::from(P.borrow())) .map(|P_opt| P_opt.map(|P| NafLookupTable5::<CachedPoint>::from(&P)))
.collect::<Vec<_>>(); .collect::<Option<Vec<_>>>()
{
Some(x) => x,
None => return None,
};
let sp = self.static_lookup_tables.len(); let sp = self.static_lookup_tables.len();
let dp = dynamic_lookup_tables.len(); let dp = dynamic_lookup_tables.len();
@ -193,6 +196,6 @@ impl VartimePrecomputedMultiscalarMul for VartimePrecomputedStraus {
} }
} }
R.into() Some(R.into())
} }
} }

View file

@ -732,22 +732,21 @@ impl VartimePrecomputedMultiscalarMul for VartimeEdwardsPrecomputation {
Self(scalar_mul::precomputed_straus::VartimePrecomputedStraus::new(static_points)) Self(scalar_mul::precomputed_straus::VartimePrecomputedStraus::new(static_points))
} }
fn vartime_mixed_multiscalar_mul<I, J, K>( fn optional_mixed_multiscalar_mul<I, J, K>(
&self, &self,
static_scalars: I, static_scalars: I,
dynamic_scalars: J, dynamic_scalars: J,
dynamic_points: K, dynamic_points: K,
) -> Self::Point ) -> Option<Self::Point>
where where
I: IntoIterator, I: IntoIterator,
I::Item: Borrow<Scalar>, I::Item: Borrow<Scalar>,
J: IntoIterator, J: IntoIterator,
J::Item: Borrow<Scalar>, J::Item: Borrow<Scalar>,
K: IntoIterator, K: IntoIterator<Item = Option<Self::Point>>,
K::Item: Borrow<Self::Point>,
{ {
self.0 self.0
.vartime_mixed_multiscalar_mul(static_scalars, dynamic_scalars, dynamic_points) .optional_mixed_multiscalar_mul(static_scalars, dynamic_scalars, dynamic_points)
} }
} }

View file

@ -219,8 +219,9 @@ pub trait VartimeMultiscalarMul {
{ {
Self::optional_multiscalar_mul( Self::optional_multiscalar_mul(
scalars, scalars,
points.into_iter().map(|P| Some(P.borrow().clone())) points.into_iter().map(|P| Some(P.borrow().clone())),
).unwrap() )
.unwrap()
} }
} }
@ -313,9 +314,26 @@ pub trait PrecomputedMultiscalarMul: Sized {
/// where the \\(B_i\\) are *static* points, for which precomputation /// where the \\(B_i\\) are *static* points, for which precomputation
/// is possible, and the \\(A_j\\) are *dynamic* points, for which /// is possible, and the \\(A_j\\) are *dynamic* points, for which
/// precomputation is not possible. /// precomputation is not possible.
///
/// This trait has three methods for performing this computation:
///
/// * [`vartime_multiscalar_mul`], which handles the special case
/// where \\(n = 0\\) and there are no dynamic points;
///
/// * [`vartime_mixed_multiscalar_mul`], which takes the dynamic
/// points as already-validated `Point`s and is infallible;
///
/// * [`optional_mixed_multiscalar_mul`], which takes the dynamic
/// points as `Option<Point>`s and returns an `Option<Point>`,
/// allowing decompression to be composed into the input iterators.
///
/// All methods require that the lengths of the input iterators be
/// known and matching, as if they were `ExactSizeIterator`s. (It
/// does not require `ExactSizeIterator` only because that trait is
/// broken).
pub trait VartimePrecomputedMultiscalarMul: Sized { pub trait VartimePrecomputedMultiscalarMul: Sized {
/// The type of point to be multiplied, e.g., `RistrettoPoint`. /// The type of point to be multiplied, e.g., `RistrettoPoint`.
type Point; type Point: Clone;
/// Given the static points \\( B_i \\), perform precomputation /// Given the static points \\( B_i \\), perform precomputation
/// and return the precomputation data. /// and return the precomputation data.
@ -324,36 +342,6 @@ pub trait VartimePrecomputedMultiscalarMul: Sized {
I: IntoIterator, I: IntoIterator,
I::Item: Borrow<Self::Point>; I::Item: Borrow<Self::Point>;
/// Given `static_scalars`, an iterator of public scalars
/// \\(b_i\\), `dynamic_scalars`, an iterator of public scalars
/// \\(a_i\\), and `dynamic_points`, an iterator of points
/// \\(A_i\\), compute
/// $$
/// Q = a_1 A_1 + \cdots + a_n A_n + b_1 B_1 + \cdots + b_m B_m,
/// $$
/// where the \\(B_j\\) are the points that were supplied to `new`.
///
/// It is an error to call this function with iterators of
/// inconsistent lengths.
///
/// The trait bound aims for maximum flexibility: the inputs must be
/// convertable to iterators (`I: IntoIter`), and the iterator's items
/// must be `Borrow<Scalar>` (or `Borrow<Point>`), to allow
/// iterators returning either `Scalar`s or `&Scalar`s.
fn vartime_mixed_multiscalar_mul<I, J, K>(
&self,
static_scalars: I,
dynamic_scalars: J,
dynamic_points: K,
) -> Self::Point
where
I: IntoIterator,
I::Item: Borrow<Scalar>,
J: IntoIterator,
J::Item: Borrow<Scalar>,
K: IntoIterator,
K::Item: Borrow<Self::Point>;
/// Given `static_scalars`, an iterator of public scalars /// Given `static_scalars`, an iterator of public scalars
/// \\(b_i\\), compute /// \\(b_i\\), compute
/// $$ /// $$
@ -382,6 +370,76 @@ pub trait VartimePrecomputedMultiscalarMul: Sized {
iter::empty::<Self::Point>(), iter::empty::<Self::Point>(),
) )
} }
/// Given `static_scalars`, an iterator of public scalars
/// \\(b_i\\), `dynamic_scalars`, an iterator of public scalars
/// \\(a_i\\), and `dynamic_points`, an iterator of points
/// \\(A_i\\), compute
/// $$
/// Q = a_1 A_1 + \cdots + a_n A_n + b_1 B_1 + \cdots + b_m B_m,
/// $$
/// where the \\(B_j\\) are the points that were supplied to `new`.
///
/// It is an error to call this function with iterators of
/// inconsistent lengths.
///
/// The trait bound aims for maximum flexibility: the inputs must be
/// convertable to iterators (`I: IntoIter`), and the iterator's items
/// must be `Borrow<Scalar>` (or `Borrow<Point>`), to allow
/// iterators returning either `Scalar`s or `&Scalar`s.
fn vartime_mixed_multiscalar_mul<I, J, K>(
&self,
static_scalars: I,
dynamic_scalars: J,
dynamic_points: K,
) -> Self::Point
where
I: IntoIterator,
I::Item: Borrow<Scalar>,
J: IntoIterator,
J::Item: Borrow<Scalar>,
K: IntoIterator,
K::Item: Borrow<Self::Point>,
{
Self::optional_mixed_multiscalar_mul(
self,
static_scalars,
dynamic_scalars,
dynamic_points.into_iter().map(|P| Some(P.borrow().clone())),
)
.unwrap()
}
/// Given `static_scalars`, an iterator of public scalars
/// \\(b_i\\), `dynamic_scalars`, an iterator of public scalars
/// \\(a_i\\), and `dynamic_points`, an iterator of points
/// \\(A_i\\), compute
/// $$
/// Q = a_1 A_1 + \cdots + a_n A_n + b_1 B_1 + \cdots + b_m B_m,
/// $$
/// where the \\(B_j\\) are the points that were supplied to `new`.
///
/// If any of the dynamic points were `None`, return `None`.
///
/// It is an error to call this function with iterators of
/// inconsistent lengths.
///
/// This function is particularly useful when verifying statements
/// involving compressed points. Accepting `Option<Point>` allows
/// inlining point decompression into the multiscalar call,
/// avoiding the need for temporary buffers.
fn optional_mixed_multiscalar_mul<I, J, K>(
&self,
static_scalars: I,
dynamic_scalars: J,
dynamic_points: K,
) -> Option<Self::Point>
where
I: IntoIterator,
I::Item: Borrow<Scalar>,
J: IntoIterator,
J::Item: Borrow<Scalar>,
K: IntoIterator<Item = Option<Self::Point>>;
} }
// ------------------------------------------------------------------------ // ------------------------------------------------------------------------