logo
pub trait AffineXCoordinate<C: Curve> {
    fn x(&self) -> FieldBytes<C>;
}
Expand description

Obtain the affine x-coordinate of an elliptic curve point.

Required methods

Get the affine x-coordinate as a serialized field element.

Implementors