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
9
10
11
12
/// ACME protocol implementation module
pub mod directory;
pub mod jwk;
pub mod jws;
pub mod nonce;
pub mod nonce_pool;

pub use directory::{Directory, DirectoryManager};
pub use jwk::Jwk;
pub use jws::JwsSigner;
pub use nonce::NonceManager;
pub use nonce_pool::NoncePool;