1use crate::CurveGroup;
2use ark_std::string::*;
3use core::fmt;
4
5pub mod curve_maps;
6pub mod map_to_curve_hasher;
7
8pub trait HashToCurve<T: CurveGroup>: Sized {
10 fn new(domain: &[u8]) -> Result<Self, HashToCurveError>;
12
13 fn hash(&self, message: &[u8]) -> Result<T::Affine, HashToCurveError>;
17}
18
19#[derive(Clone, Debug)]
21pub enum HashToCurveError {
22 UnsupportedCurveError(String),
24
25 MapToCurveError(String),
27}
28
29impl ark_std::error::Error for HashToCurveError {}
30
31impl fmt::Display for HashToCurveError {
32 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> Result<(), fmt::Error> {
33 match self {
34 HashToCurveError::UnsupportedCurveError(s) => write!(f, "{}", s),
35 HashToCurveError::MapToCurveError(s) => write!(f, "{}", s),
36 }
37 }
38}
39
40#[cfg(test)]
41mod tests;