pub trait AffineCoordinates { type FieldRepr: AsRef<[u8]>; // Required methods fn x(&self) -> Self::FieldRepr; fn y_is_odd(&self) -> Choice; }
Access to the affine coordinates of an elliptic curve point.
Field element representation.
Get the affine x-coordinate as a serialized field element.
Is the affine y-coordinate odd?