logo
pub trait PrimeCurveArithmetic: PrimeCurve + ProjectiveArithmetic<ProjectivePoint = Self::CurveGroup> {
    type CurveGroup: PrimeCurve<Affine = <Self as AffineArithmetic>::AffinePoint>;
}
This is supported on crate feature arithmetic only.
Expand description

Prime order elliptic curve with projective arithmetic implementation.

Associated Types

Prime order elliptic curve group.

Implementors