#![doc = include_str!("../README.md")]
mod bytes;
mod comment;
mod constants;
mod error;
mod fingerprint;
mod io;
mod signature;
mod signing_key;
mod verifying_key;
pub use self::bytes::*;
pub use self::comment::*;
pub(crate) use self::constants::*;
pub use self::error::*;
pub use self::io::*;
pub use self::signature::*;
pub use self::signing_key::*;
pub use self::verifying_key::*;
pub use ed25519_dalek as ed25519;