1 2 3 4 5 6 7 8
//! SM4 分组密码(GB/T 32907-2016) //! 实现见各子模块。 mod cipher; mod modes; pub use cipher::Sm4Key; pub use modes::*;