//! CAdES (CMS Advanced Electronic Signatures) implementation.
//!
//! Supported levels:
//! - **B-B** (Baseline-B): basic signature — M1
//! - **B-T** (Baseline-T): B-B + signature timestamp — M3c
//! - **B-LT** (Baseline-LT): B-T + embedded revocation data — M3c
/// CAdES B-B signing.
/// CAdES B-T and B-LT signing.
pub use sign;
pub use sign_tsign_t;
pub use sign_tsign_lt;