crypt-config 0.2.2

A crypt module that encrypt/decrypt json data based on the configuration. This might be used as a layer before saving data in Mongo DB or after fetching the data from the DB in order to decrypt them.
Documentation
1
2
3
4
5
6
7
pub mod cbc;
pub mod cfb1;
pub mod ecb;

pub use self::cbc::*;
pub use self::cfb1::*;
pub use self::ecb::*;