pub trait PrimeCurveArithmetic: PrimeCurve + CurveArithmetic<ProjectivePoint = Self::CurveGroup> {
    type CurveGroup: PrimeCurve<Affine = <Self as CurveArithmetic>::AffinePoint>;
}
Available on crate feature arithmetic only.
Expand description

Prime order elliptic curve with projective arithmetic implementation.

Required Associated Types§

source

type CurveGroup: PrimeCurve<Affine = <Self as CurveArithmetic>::AffinePoint>

Prime order elliptic curve group.

Object Safety§

This trait is not object safe.

Implementors§