1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#![doc = include_str!("../Readme.md")]
#![warn(missing_docs)]
#![warn(rustdoc::missing_crate_level_docs)]

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
/// Hash-to-Curve Errors
pub enum Error {
    /// The length requested of the expand_message function leads to an invalid parameter.
    InvalidEll,
    /// Catch-all error for errors in the underlying curve implementation.
    CurveError,
}

impl From<p256::Error> for Error {
    fn from(_value: p256::Error) -> Self {
        Self::CurveError
    }
}

// ========== Suites =============
pub mod p256_hash;