asx-rs 0.14.0

AS2 and AS4 B2B messaging library for Rust — signing, encryption, MDN, and ebMS3/AS4 profile support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#[cfg(feature = "as2")]
pub mod as2_smime;
// Always available: a receiver must be able to *detect* a compressed payload and
// fail with a clear message even when the `compression` feature is off.
pub mod compression;
#[cfg(any(feature = "as2", feature = "as4", feature = "async-ocsp"))]
pub mod ocsp_client;
#[cfg(any(feature = "as2", feature = "as4", feature = "async-ocsp"))]
pub mod ocsp_discovery;
/// Signing key abstraction — `SigningKeyProvider` trait + `PemSigningKeyProvider` default.
#[cfg(any(feature = "as2", feature = "as4"))]
pub mod signing;
#[cfg(feature = "as4")]
pub mod soap_builder;
#[cfg(any(feature = "as2", feature = "as4"))]
pub mod wssec;