rs_sm4/lib.rs
1//! # SM4 - `rs_sm4` - SM4 Block Cipher
2//!
3//! **Important Note: This crate is still a work in progress and is not ready for consumption.**
4//!
5//! SM4 is a block cipher that was announced by the Chinese government in 2016 as a standard in China. It is mainly used
6//! in the following applications:
7//! - Wireless communication systems: Integrated into the WAPI standard for secure wireless communication.
8//! - Secure communications: Used in secure financial transactions and VPNs in China.
9//!
10//! This crate implements SM4 as part of the [RustyShield](https://docs.rs/rs_shield/latest/rs_shield/) project.
11
12#![no_std]