1 2 3 4 5 6 7 8 9 10 11
mod error; use rpki::ca::idexchange::MyHandle; pub use self::error::*; mod signing; pub use self::signing::*; pub type SignerHandle = MyHandle; pub type CryptoResult<T> = std::result::Result<T, self::error::Error>;