hash2curve 0.1.0

Traits and algorithms for hashing arbitrary values to curve group element
Documentation
1
2
3
4
5
6
7
8
9
/// Implements the error types this crate produces
use crate::lib::*;

/// The kinds of errors
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum Error {
    /// Occurs when ell > 255 in expand_msg_xmd
    TooManyBytesRequest,
}