├── Makefile ├── README.md ├── sm3 ├── Makefile ├── sm3.c └── sm3.h ├── sm34test ├── Makefile └── sm34test.c └── sm4 ├── Makefile ├── sm4.h └── sm4_generic.c /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z789/SM3-SM4-for-linux-kernel/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z789/SM3-SM4-for-linux-kernel/HEAD/README.md -------------------------------------------------------------------------------- /sm3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z789/SM3-SM4-for-linux-kernel/HEAD/sm3/Makefile -------------------------------------------------------------------------------- /sm3/sm3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z789/SM3-SM4-for-linux-kernel/HEAD/sm3/sm3.c -------------------------------------------------------------------------------- /sm3/sm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z789/SM3-SM4-for-linux-kernel/HEAD/sm3/sm3.h -------------------------------------------------------------------------------- /sm34test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z789/SM3-SM4-for-linux-kernel/HEAD/sm34test/Makefile -------------------------------------------------------------------------------- /sm34test/sm34test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z789/SM3-SM4-for-linux-kernel/HEAD/sm34test/sm34test.c -------------------------------------------------------------------------------- /sm4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z789/SM3-SM4-for-linux-kernel/HEAD/sm4/Makefile -------------------------------------------------------------------------------- /sm4/sm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z789/SM3-SM4-for-linux-kernel/HEAD/sm4/sm4.h -------------------------------------------------------------------------------- /sm4/sm4_generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z789/SM3-SM4-for-linux-kernel/HEAD/sm4/sm4_generic.c --------------------------------------------------------------------------------