Trait elliptic_curve::sec1::ToCompactEncodedPoint[][src]

pub trait ToCompactEncodedPoint<C> where
    C: Curve,
    UntaggedPointSize<C>: Add<U1> + ArrayLength<u8>,
    UncompressedPointSize<C>: ArrayLength<u8>, 
{ fn to_compact_encoded_point(&self) -> Option<EncodedPoint<C>>; }
Expand description

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

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

Required methods

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

Implementors