logo
pub trait MapToCurve {
    type Output;

    fn map_to_curve(&self) -> Self::Output;
}
Available on crate feature hash2curve only.
Expand description

Trait for converting field elements into a point via a mapping method like Simplified Shallue-van de Woestijne-Ulas or Elligator

Required Associated Types

The output point

Required Methods

Map a field element into a point

Implementors