Trait elliptic_curve::sec1::FromEncodedPoint
source · 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§
sourcefn from_encoded_point(point: &EncodedPoint<C>) -> CtOption<Self>
fn from_encoded_point(point: &EncodedPoint<C>) -> CtOption<Self>
Deserialize the type this trait is impl’d on from an EncodedPoint
.