aboutsummaryrefslogtreecommitdiff
path: root/lockchain-core/src/crypto.rs
blob: 3bba5a2695aa93b02a46af78f1c59fb80cc83070 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//! Shared cryptographic primitives for the lockchain ecosystem
//! 
//! This is a secure storage vault after all, we need some
//! shared crypto helpers for all the other crates :)

mod keys;
mod utils;
mod data;

pub use self::keys::{Key, KEY_LENGTH};
pub use self::data::PackedData;
pub use self::utils::*;