[][src]Trait elliptic_curve::sec1::FromEncodedPoint

pub trait FromEncodedPoint<C> where
    C: Curve,
    UntaggedPointSize<C>: Add<U1> + ArrayLength<u8>,
    UncompressedPointSize<C>: ArrayLength<u8>,
    Self: Sized
{ fn from_encoded_point(public_key: &EncodedPoint<C>) -> CtOption<Self>; }

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

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

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

Returns

None if the EncodedPoint is invalid.

Loading content...

Implementors

Loading content...