1//! Broken message authentication codes. 2//! 3//! The algorithms in this module are known to be broken or too short to be secure. Only use them 4//! for legacy applications. 5 6mod umac; 7pub use self::umac::{Umac128, Umac32, Umac64, Umac96};