pub trait PrimeCurve: Curve<AffineRepr = Self::Affine> + PrimeGroup {
    type Affine: for<'r> PrimeCurveAffine<Curve = Self, Scalar = Self::Scalar, Output = Self, Output = Self> + Mul<Self::Scalar> + for<'r> Mul<&'r Self::Scalar>;
}
Expand description

Efficient representation of an elliptic curve point guaranteed to be in the correct prime order subgroup.

Required Associated Types§

type Affine: for<'r> PrimeCurveAffine<Curve = Self, Scalar = Self::Scalar, Output = Self, Output = Self> + Mul<Self::Scalar> + for<'r> Mul<&'r Self::Scalar>

Implementors§