Trait ethers::core::k256::elliptic_curve::ProjectiveArithmetic[][src]

pub trait ProjectiveArithmetic: Curve + AffineArithmetic {
    type ProjectivePoint: ConditionallySelectable + ConstantTimeEq + Default + From<Self::AffinePoint> + Into<Self::AffinePoint> + Curve + Group;
}
Expand description

Elliptic curve with projective arithmetic implementation.

Associated Types

Elliptic curve point in projective coordinates.

Note: the following bounds are enforced by [group::Group]:

  • Copy
  • Clone
  • Debug
  • Eq
  • Sized
  • Send
  • Sync

Implementors