pub trait FixedPoints<C: CurveAffine>: Debug + Eq + Clone {
    type FullScalar: Debug + Eq + Clone;
    type ShortScalar: Debug + Eq + Clone;
    type Base: Debug + Eq + Clone;
}
Expand description

Defines the fixed points for a given instantiation of the ECC chip.

Required Associated Types

Fixed points that can be used with full-width scalar multiplication.

Fixed points that can be used with short scalar multiplication.

Fixed points that can be multiplied by base field elements.

Implementors