-
Notifications
You must be signed in to change notification settings - Fork 253
/
mod.rs
41 lines (33 loc) · 1.27 KB
/
mod.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
use crate::CurveGroup;
use ark_std::string::*;
use core::fmt;
pub mod curve_maps;
pub mod map_to_curve_hasher;
/// Trait for hashing arbitrary data to a group element on an elliptic curve
pub trait HashToCurve<T: CurveGroup>: Sized {
/// Create a new hash to curve instance, with a given domain.
fn new(domain: &[u8]) -> Result<Self, HashToCurveError>;
/// Produce a hash of the message, which also depends on the domain.
/// The output of the hash is a curve point in the prime order subgroup
/// of the given elliptic curve.
fn hash(&self, message: &[u8]) -> Result<T::Affine, HashToCurveError>;
}
/// This is an error that could occur during the hash to curve process
#[derive(Clone, Debug)]
pub enum HashToCurveError {
/// Curve choice is unsupported by the given HashToCurve method.
UnsupportedCurveError(String),
/// Error with map to curve
MapToCurveError(String),
}
impl ark_std::error::Error for HashToCurveError {}
impl fmt::Display for HashToCurveError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> Result<(), fmt::Error> {
match self {
HashToCurveError::UnsupportedCurveError(s) => write!(f, "{}", s),
HashToCurveError::MapToCurveError(s) => write!(f, "{}", s),
}
}
}
#[cfg(test)]
mod tests;