1
2
3
4
5
6
7
8
9
10
11
#![doc = include_str!("../README.md")]
#![deny(missing_docs)]

mod protocol;
pub mod sign;
pub mod verify;

#[cfg(any(feature = "ed25519", feature = "integration-test", test))]
pub mod ed25519;

pub use protocol::*;