pub trait FromEncodedPoint<C>where
    Self: Sized,
    C: Curve,
    FieldSize<C>: ModulusSize,{
    // Required method
    fn from_encoded_point(point: &EncodedPoint<C>) -> CtOption<Self>;
}
Expand description

Trait for deserializing a value from a SEC1 encoded curve point.

This is intended for use with the AffinePoint type for a given elliptic curve.

Required Methods§

source

fn from_encoded_point(point: &EncodedPoint<C>) -> CtOption<Self>

Deserialize the type this trait is impl’d on from an EncodedPoint.

Implementors§