1#![doc(html_root_url = "https://rustls.github.io/rustls-cng/doc/rustls_cng")]
2#![doc = include_str!("../README.md")]
3
4pub mod cert;
5pub mod error;
6pub mod key;
7pub mod signer;
8pub mod store;
9
10pub type Result<T> = std::result::Result<T, error::CngError>;