confium-pki 0.5.3

X.509 cert, scoped delegation, CMS, and XMLDSig for Confium
Documentation
//! Scoped certificate delegation templates.
//!
//! When a parent cert delegates bounded authority to a child cert, the
//! child can issue/sign artifacts only within the delegated scope. This
//! crate provides the scope types and validation logic.
//!
//! Example: OIML CNML Manufacturer Model Cert delegates to manufacturer
//! the right to issue Instance Certs for a specific instrument model only.
//!
//! See `TODO.roadmap/32-cert-delegation-cms-xmldsig.md` for the full spec.

#![forbid(unsafe_code)]
#![allow(missing_docs)] // TODO: document before 1.0

mod constraint;
mod operation;
mod scope;
mod validate;

pub use constraint::*;
pub use operation::*;
pub use scope::*;
pub use validate::*;