Trait elliptic_curve::AffineArithmetic
source · [−]pub trait AffineArithmetic: Curve + ScalarArithmetic {
type AffinePoint: 'static + AffineXCoordinate<Self> + Copy + Clone + ConditionallySelectable + ConstantTimeEq + Debug + Default + DefaultIsZeroes + Eq + PartialEq + Sized + Send + Sync;
}
Available on crate feature
arithmetic
only.Expand description
Elliptic curve with affine arithmetic implementation.
Required Associated Types
type AffinePoint: 'static + AffineXCoordinate<Self> + Copy + Clone + ConditionallySelectable + ConstantTimeEq + Debug + Default + DefaultIsZeroes + Eq + PartialEq + Sized + Send + Sync
type AffinePoint: 'static + AffineXCoordinate<Self> + Copy + Clone + ConditionallySelectable + ConstantTimeEq + Debug + Default + DefaultIsZeroes + Eq + PartialEq + Sized + Send + Sync
Elliptic curve point in affine coordinates.