pub trait PointValidation {
    type Point;

    fn validate_point(&self) -> bool;
}

Required Associated Types

Required Methods

Verifies if a byte representation of a curve point lies in the curve.

Implementors