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