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