opensaml 0.0.1

SAML 2.0 Service Provider library (bergshamra for XML crypto).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! XML security backend abstraction.
//!
//! XML-DSig / XML-Enc / C14N live in `bergshamra`; `opensaml` only orchestrates
//! through the [`XmlSecurityBackend`] trait.

mod backend;
#[cfg(feature = "crypto-bergshamra")]
mod bergshamra;

pub use backend::XmlSecurityBackend;
#[cfg(feature = "crypto-bergshamra")]
pub use bergshamra::BergshamraBackend;