Trait elliptic_curve::sec1::FromEncodedPoint

source ·
pub trait FromEncodedPoint<C>
where Self: Sized, C: Curve, FieldBytesSize<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.

Object Safety§

This trait is not object safe.

Implementors§