Trait elliptic_curve::ProjectiveArithmetic[][src]

pub trait ProjectiveArithmetic: Curve + AffineArithmetic {
    type ProjectivePoint: ConditionallySelectable + ConstantTimeEq + Default + DefaultIsZeroes + From<Self::AffinePoint> + Into<Self::AffinePoint> + Curve<AffineRepr = Self::AffinePoint> + Group<Scalar = Self::Scalar>;
}
This is supported on crate feature arithmetic only.
Expand description

Elliptic curve with projective arithmetic implementation.

Associated Types

Elliptic curve point in projective coordinates.

Note: the following bounds are provided by group::Group:

Implementors