pub trait PrimeCurveArithmetic: PrimeCurve + CurveArithmetic<ProjectivePoint = Self::CurveGroup> {
type CurveGroup: PrimeCurve<Affine = <Self as CurveArithmetic>::AffinePoint>;
}Expand description
Prime order elliptic curve with projective arithmetic implementation.
Required Associated Types§
Sourcetype CurveGroup: PrimeCurve<Affine = <Self as CurveArithmetic>::AffinePoint>
type CurveGroup: PrimeCurve<Affine = <Self as CurveArithmetic>::AffinePoint>
Prime order elliptic curve group.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".