rustls_cert_gen/
lib.rs

1//! This library wraps [rcgen] to provide a simple API to generate TLS
2//! certificate-chains. Its primary intent is to ease development of
3//! applications that verify chains of trust. It can be used for
4//! whatever purpose you may need a TLS certificate-chain.
5
6#![warn(missing_docs, unreachable_pub)]
7
8mod cert;
9pub use cert::{Ca, CaBuilder, CertificateBuilder, EndEntity, EndEntityBuilder};