pub trait HashToCurve<T: CurveGroup>: Sized {
    // Required methods
    fn new(domain: &[u8]) -> Result<Self, HashToCurveError>;
    fn hash(&self, message: &[u8]) -> Result<T::Affine, HashToCurveError>;
}Expand description
Trait for hashing arbitrary data to a group element on an elliptic curve
Required Methods§
Sourcefn new(domain: &[u8]) -> Result<Self, HashToCurveError>
 
fn new(domain: &[u8]) -> Result<Self, HashToCurveError>
Create a new hash to curve instance, with a given domain.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.