#![deny(
warnings,
missing_docs,
unsafe_code,
unused_import_braces,
unused_lifetimes,
unused_qualifications
)]
#![cfg_attr(feature = "nightly", feature(doc_cfg))]
#![no_std]
#[cfg(feature = "alloc")]
extern crate alloc;
#[cfg(feature = "std")]
extern crate std;
mod lib {
mod core {
#[cfg(not(feature = "std"))]
pub use core::*;
#[cfg(feature = "std")]
pub use std::*;
}
pub use self::core::fmt::{self, Debug, Display, Result as FmtResult};
pub use self::core::marker::{self, PhantomData};
pub use self::core::option::{self, Option};
pub use self::core::result::{self, Result};
pub use self::core::{u32, u64, usize};
#[cfg(all(not(feature = "std"), feature = "alloc"))]
pub use alloc::vec::Vec;
#[cfg(feature = "std")]
pub use std::vec::Vec;
}
mod error;
pub use error::*;
mod from_ro;
pub use from_ro::*;
mod expand_msg;
pub use expand_msg::*;
mod hash_to_field;
pub use hash_to_field::*;
pub trait HashToCurve<X>
where
X: ExpandMsg,
{
fn hash_to_curve<M: AsRef<[u8]>, D: AsRef<[u8]>>(msg: M, dst: D) -> Self;
}
pub trait EncodeToCurve<X>
where
X: ExpandMsg,
{
fn encode_to_curve<M: AsRef<[u8]>, D: AsRef<[u8]>>(msg: M, dst: D) -> Self;
}