Skip to main content

bergshamra_enc/
lib.rs

1#![forbid(unsafe_code)]
2
3//! XML Encryption (XML-Enc) implementation.
4//!
5//! Provides encryption and decryption per the W3C XML Encryption spec.
6
7pub mod context;
8pub mod decrypt;
9pub mod encrypt;
10
11pub use context::EncContext;