//! Shared cryptographic primitives and utilities //! //! /// We re-export keybob's API here mod keys { pub use keybob::{Key, KeyType}; use traits::{AutoEncoder, Encryptable}; impl AutoEncoder for Key {} impl AutoEncoder for KeyType {} impl Encryptable for Key {} impl Encryptable for KeyType {} } mod data; pub mod encoding; pub mod random; pub mod hashing; pub use self::data::PackedData; pub use self::keys::{Key, KeyType};