logo
pub trait ProjectiveArithmetic: Curve where
    FieldBytes<Self>: From<Scalar<Self>> + for<'r> From<&'r Scalar<Self>>,
    Scalar<Self>: PrimeField<Repr = FieldBytes<Self>>, 
{ type ProjectivePoint: Curve; }
Expand description

Elliptic curve with projective arithmetic implementation.

Associated Types

Elliptic curve point in projective coordinates.

Implementors