Trait curve25519_dalek::traits::BasepointTable
source · pub trait BasepointTable {
type Point;
// Required methods
fn create(basepoint: &Self::Point) -> Self;
fn basepoint(&self) -> Self::Point;
fn mul_base(&self, scalar: &Scalar) -> Self::Point;
}
Expand description
A precomputed table of basepoints, for optimising scalar multiplications.