1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
//! ZUC stream cipher algorithm(祖冲之序列密码算法) //! GM/T 0001-2012 //! //! https://www.cnblogs.com/mengsuenyan/p/13819504.html mod zuc_const_tables; mod zuc_core; pub use zuc_core::ZUC; mod zuc_cipher; pub use zuc_cipher::ZUCCipher; mod zuc_mac; pub use zuc_mac::ZUCMac; #[cfg(test)] mod zuc_test;