pub trait PrimeCurveArithmetic: PrimeCurve + ProjectiveArithmetic<ProjectivePoint = Self::CurveGroup> {
    type CurveGroup: PrimeCurve<Affine = <Self as AffineArithmetic>::AffinePoint>;
}
Expand description

Prime order elliptic curve with projective arithmetic implementation.

Required Associated Types§

Prime order elliptic curve group.

Implementors§