1
 2
 3
 4
 5
 6
 7
 8
 9
10
//! 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;

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