1//! Secrets used in OTP generation. 2 3pub mod encoding; 4pub mod length; 5 6#[cfg(feature = "generate-secret")] 7pub mod generate; 8 9pub mod core; 10 11pub use length::Length; 12 13pub use core::{Error, Owned, Secret};