pub trait GenericUncompressedEncodable<const N: usize>: GenericCurveAffine {
    fn into_uncompressed(&self) -> EncodingBytes<Self, N>;
    fn from_uncompressed(
        encoding: EncodingBytes<Self, N>
    ) -> Result<Self, GroupDecodingError>; }

Required Methods§

Converts this element into its uncompressed encoding, so long as it’s not the point at infinity.

Converts an uncompressed encoding into the curve point

Implementors§