ades-rs 0.1.0

AdES digital signatures (CAdES, PAdES, XAdES, JAdES) for the eIDAS 2.0 ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! OCSP (Online Certificate Status Protocol, RFC 6960) client.
//!
//! Checks the revocation status of an X.509 certificate by querying
//! the OCSP responder URL found in the certificate's AIA extension,
//! or a URL provided explicitly.

/// OCSP client implementation.
#[cfg(feature = "ocsp")]
pub mod client;

#[cfg(feature = "ocsp")]
pub use client::{OcspClient, OcspStatus};