myca 0.1.0

TLS certificate chain generator.
Documentation
1
2
3
4
5
6
7
8
9
mod cert;
pub use cert::BuildParams;
mod chain;
pub use chain::CertChain;

/// A specialized `Result` type.
pub type Result<T> = std::result::Result<T, Error>;
/// This is defined as a convenience.
pub type Error = Box<dyn std::error::Error + Send + Sync>;