Skip to main content

RevocationLedger

Trait RevocationLedger 

pub trait RevocationLedger:
    Send
    + Sync
    + 'static {
    // Required method
    fn revoked(&self, ca_id: &CaId) -> Vec<RevokedCert>;
}
Available on crate feature boring only.
Expand description

Source of revoked serials for a CA. The default responder uses no ledger (nothing revoked); implement this to actually revoke issued leaves.

Required Methods§

fn revoked(&self, ca_id: &CaId) -> Vec<RevokedCert>

Currently-revoked certificates for ca_id.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§