mbox series

[0/2] crypto: Introduce ARIA symmetric cipher algorithm

Message ID 20220620164127.6380-1-ap420073@gmail.com
Headers show
Series crypto: Introduce ARIA symmetric cipher algorithm | expand

Message

Taehee Yoo June 20, 2022, 4:41 p.m. UTC
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