//! An implementation of the [SM4][1] block cipher.
//!//! [1]: https://en.wikipedia.org/wiki/SM4_(cipher)
#![no_std]pubexterncrate block_cipher_trait;externcrate byteorder;modconsts;modsm4;useblock_cipher_trait::generic_array;useblock_cipher_trait::BlockCipher;pubuseself::sm4::Sm4;