aboutsummaryrefslogtreecommitdiff
path: root/lockchain-crypto/src/lib.rs
blob: a454a46b43708c51d600404e3db1cbb702728dbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! 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.

extern crate lockchain_core as lcc;

mod databody;
mod engine;
mod keyfold;

pub use crate::databody::DataBody;
pub use crate::engine::AesEngine;
pub use crate::keyfold::Keyfold;