aboutsummaryrefslogtreecommitdiff
path: root/lockchain-crypto/src/lib.rs
blob: e4c53661c8f107eb9e5184e56d22d6eac9acb7c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//! 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 lockchain_core as lcc;


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

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