logo
pub trait DecompactPoint<C: Curve>: Sized {
    fn decompact(x: &FieldBytes<C>) -> CtOption<Self>;
}
Expand description

Decompact an elliptic curve point from an x-coordinate.

Decompaction relies on properties of specially-generated keys but provides a more compact representation than standard point compression.

Required methods

Attempt to decompact an elliptic curve point

Implementors