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
13
14
/// XAdES B-B signing.
mod sign;

/// XAdES B-T and B-LT signing.
#[cfg(feature = "tsp")]
mod sign_t;

pub use sign::sign;

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

#[cfg(all(feature = "tsp", feature = "ocsp"))]
pub use sign_t::sign_lt;