1 2 3 4 5 6 7 8 9 10 11 12 13 14
#![deny(unsafe_code)] #![deny(missing_docs)] #![deny(clippy::unwrap_used)] #![deny(clippy::panic)] //! Message Authentication Codes //! //! Provides MAC algorithms (HMAC, CMAC). pub mod cmac; pub mod hmac; pub use cmac::*; pub use hmac::*;