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.
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.