1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
//! //! [](https://travis-ci.org/breard-r/libreauth) //! [](https://crates.io/crates/libreauth) //! [](https://docs.rs/libreauth/) //! //! LibreAuth is a collection of tools for user authentication. //! //! #[cfg(feature = "cbindings")] pub(crate) mod c_helpers; #[cfg(feature = "hash")] pub mod hash; #[cfg(feature = "key")] pub mod key; #[cfg(feature = "oath")] pub mod oath; #[cfg(feature = "pass")] pub mod pass;