pub trait AffineArithmetic: Curve + ScalarArithmetic {
    type AffinePoint: 'static + AffineXCoordinate<Self> + Copy + Clone + ConditionallySelectable + ConstantTimeEq + Debug + Default + DefaultIsZeroes + Eq + PartialEq + Sized + Send + Sync;
}
Expand description

Elliptic curve with affine arithmetic implementation.

Required Associated Types§

source

type AffinePoint: 'static + AffineXCoordinate<Self> + Copy + Clone + ConditionallySelectable + ConstantTimeEq + Debug + Default + DefaultIsZeroes + Eq + PartialEq + Sized + Send + Sync

Elliptic curve point in affine coordinates.

Implementors§