Trait elliptic_curve::ops::LinearCombination
source · pub trait LinearCombination: Group {
fn lincomb(x: &Self, k: &Self::Scalar, y: &Self, l: &Self::Scalar) -> Self { ... }
}
Expand description
Linear combination.
This trait enables crates to provide an optimized implementation of linear combinations (e.g. Shamir’s Trick), or otherwise provides a default non-optimized implementation.