est-ca 0.2.0

RFC 7030 Enrollment over Secure Transport (EST) — client, server, and an internal X.509 CA in pure Rust.
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Internal X.509 Certificate Authority primitives.
//!
//! This module exposes just enough to run an issuing intermediate CA
//! with a strict, narrow profile — suitable for IoT / device PKI and
//! **not** intended as a drop-in for public-web issuance.

pub mod issuer;
pub mod profile;
pub mod serial;

pub use issuer::Issuer;
pub use profile::CertProfile;
pub use serial::{SerialStore, FileSerialStore};