lockchain-core 0.9.0

Provides common abstractions for the lockchain crate ecoystem
Documentation
//! Shared cryptographic primitives and utilities
//! 
//! 

mod data;

/// We re-export keybob's API here
mod keys {
    pub use keybob::{Key, KeyType};
    use traits::AutoEncoder;

    impl AutoEncoder for Key {}
    impl AutoEncoder for KeyType {}
}

// pub mod passwords;
pub mod encoding;
pub mod keystore;
pub mod hashing;
pub mod random;

pub use self::data::PackedData;
pub use self::keystore::KeyStore;
pub use self::keys::{Key, KeyType};