This patchset adds a new ARIA(RFC 5794) symmetric cipher algorithm. Like SEED, the ARIA is a standard cipher algorithm in South Korea. Especially Government and Banking industry have been using this algorithm. So the implementation of ARIA will be useful for them and network vendors. Usecases of this algorithm are TLS[1], and IPSec. It would be very useful for them if it implements kTLS for ARIA. It is tested in x86 and MIPS with the tcrypt module. The first patch is an implementation of ARIA algorithm. The second patch adds tests for ARIA. [1] https://datatracker.ietf.org/doc/html/rfc6209 Taehee Yoo (2): crypto: Implement ARIA symmetric cipher algorithm crypto: add ARIA testmgr tests crypto/Kconfig | 15 + crypto/Makefile | 1 + crypto/aria.c | 288 +++++ crypto/tcrypt.c | 38 +- crypto/testmgr.c | 31 + crypto/testmgr.h | 2860 +++++++++++++++++++++++++++++++++++++++++ include/crypto/aria.h | 461 +++++++ 7 files changed, 3693 insertions(+), 1 deletion(-) create mode 100644 crypto/aria.c create mode 100644 include/crypto/aria.h -- 2.17.1