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

pub trait Decompress<C: Curve>: Sized {
    pub 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

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

Attempt to decompress an elliptic curve point

Loading content...

Implementors

Loading content...