pub trait AffineCoordinates {
type FieldRepr: AsRef<[u8]>;
// Required methods
fn x(&self) -> Self::FieldRepr;
fn y_is_odd(&self) -> Choice;
}Expand description
Access to the affine coordinates of an elliptic curve point.
main (development) branch of crypto-glue.