1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//! A shim-layer crate for lockchain encryption
//! 
//! To get going with encrypted lockchain files, just initialise an
//! AesEngine type and start working with encrypted types provided by
//! some backend.

#[macro_use]
extern crate serde_derive;
extern crate serde;
extern crate miscreant;
extern crate base64;
extern crate blake2;
extern crate rand;

extern crate lockchain_core as lcc;


mod databody;
mod engine;
mod keys;
mod utils;
mod data;

pub use databody::*;
pub use engine::AesEngine;