Trait elliptic_curve::sec1::ToEncodedPoint[][src]

pub trait ToEncodedPoint<C> where
    C: Curve,
    UntaggedPointSize<C>: Add<U1> + ArrayLength<u8>,
    UncompressedPointSize<C>: ArrayLength<u8>, 
{ fn to_encoded_point(&self, compress: bool) -> EncodedPoint<C>; }

Trait for serializing a value to a SEC1 encoded curve point.

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

Required methods

fn to_encoded_point(&self, compress: bool) -> EncodedPoint<C>[src]

Serialize this value as a SEC1 EncodedPoint, optionally applying point compression.

Loading content...

Implementors

impl<C> ToEncodedPoint<C> for PublicKey<C> where
    C: Curve + ProjectiveArithmetic,
    Scalar<C>: PrimeField<Repr = FieldBytes<C>>,
    AffinePoint<C>: Copy + Clone + Debug + Default + FromEncodedPoint<C> + ToEncodedPoint<C>,
    ProjectivePoint<C>: From<AffinePoint<C>>,
    UntaggedPointSize<C>: Add<U1> + ArrayLength<u8>,
    UncompressedPointSize<C>: ArrayLength<u8>, 
[src]

fn to_encoded_point(&self, compress: bool) -> EncodedPoint<C>[src]

Serialize this PublicKey as a SEC1 EncodedPoint, optionally applying point compression

Loading content...