acmex 0.8.0

AcmeX: High-performance, extensible ACME v2 (RFC 8555) client and server in Rust, supporting multiple DNS providers, storage backends, and crypto libraries.
Documentation
1
2
3
4
5
6
7
8
/// Account module for ACME client
pub mod credentials;
pub mod key_rollover;
pub mod manager;

pub use credentials::KeyPair;
pub use key_rollover::KeyRollover;
pub use manager::{Account, AccountManager};