[][src]Trait elliptic_curve::weierstrass::point::Decompress

pub trait Decompress<C: Curve>: Sized {
    fn decompress(x: &FieldBytes<C>, y_is_odd: Choice) -> CtOption<Self>;
}

Attempt to decompress an elliptic curve point from its x-coordinate and a boolean flag indicating whether or not the y-coordinate is odd.

Required methods

fn decompress(x: &FieldBytes<C>, y_is_odd: Choice) -> CtOption<Self>

Attempt to decompress an elliptic curve point

Loading content...

Implementors

Loading content...