lockchain-core 0.7.0

Provides common abstractions for the lockchain crate ecoystem
Documentation
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::*;