aboutsummaryrefslogtreecommitdiff
path: root/lockchain-core/src/crypto.rs
blob: b00f79a8f24d8736a1e1a7e3a4378f5a8d66082f (plain)
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::*;