logo
pub trait FromEncodedPoint<C> where
    Self: Sized,
    C: Curve,
    FieldSize<C>: ModulusSize
{ fn from_encoded_point(point: &EncodedPoint<C>) -> CtOption<Self>; }
Available on crate feature sec1 only.
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

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

Implementors