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
//! TSP (Time-Stamp Protocol, RFC 3161) client.
//!
//! Sends a `TimeStampReq` to a TSA and returns the `TimeStampToken`
//! (a CMS `ContentInfo`) for embedding in AdES signatures.

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

#[cfg(feature = "tsp")]
pub use client::TspClient;