pub trait PointValidation {
type Point;
// Required method
fn validate_point(&self) -> bool;
}
Required Associated Types§
Required Methods§
sourcefn validate_point(&self) -> bool
fn validate_point(&self) -> bool
Verifies if a byte representation of a curve point lies in the curve.