xmlsec 0.3.0

Wrapper for xmlsec1 library
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//!
//! Crypto Backend Wrappings
//!

// TODO do proper selection for the backend depending on env var set for xmlsec crypto

// mod nss;
// pub use nss::XmlSecSignatureMethod;

// mod gcrypt;
// pub use gcrypt::XmlSecSignatureMethod;

// mod gnutls;
// pub use gnutls::XmlSecSignatureMethod;

mod openssl;
pub use openssl::XmlSecSignatureMethod;