devela/data/xipher/mod.rs
1// devela::data::xipher
2//
3//! Cryptographic primitives for encryption, authentication, and hashing.
4//
5
6crate::items! { // structural access: _mods, _all
7 #[allow(unused)]
8 pub use _mods::*;
9
10 mod _mods { #![allow(unused)]
11 // WIPZONE
12 // pub use super::otp::*;
13 // pub use super::sha1::*;
14 }
15 pub(super) mod _all { #![allow(unused)]
16 #[doc(inline)]
17 pub use super::_mods::*;
18 }
19}
20// WIPZONE
21// mod otp;
22// mod sha1;