1
2
3
4
5
6
7
//! Traits for elliptic curve points

/// Obtain the generator point.
pub trait Generator {
    /// Get the generator point for this elliptic curve
    fn generator() -> Self;
}