libsmx 0.3.0

Pure-Rust, no_std, constant-time SM2/SM3/SM4/SM9 Chinese cryptography (GB/T 32918/32905/32907/38635)
Documentation
1
2
3
4
5
6
7
8
//! SM4 分组密码(GB/T 32907-2016)
//! 实现见各子模块。

mod cipher;
mod modes;

pub use cipher::Sm4Key;
pub use modes::*;