]> git.baikalelectronics.ru Git - kernel.git/commit
crypto: aria - Implement ARIA symmetric cipher algorithm
authorTaehee Yoo <ap420073@gmail.com>
Mon, 4 Jul 2022 09:42:48 +0000 (09:42 +0000)
committerHerbert Xu <herbert@gondor.apana.org.au>
Fri, 15 Jul 2022 08:38:19 +0000 (16:38 +0800)
commitde54ebdcfebb5e0b8bcd5ba2009fb25fbfdbb419
tree321067b8897c4a506106ab6b5064398a88439d8c
parentfb9a0c3cfb03b8f279cea544521d0377efe633ad
crypto: aria - Implement ARIA symmetric cipher algorithm

ARIA(RFC 5794) is a symmetric block cipher algorithm.
This algorithm is being used widely in South Korea as a standard cipher
algorithm.
This code is written based on the ARIA implementation of OpenSSL.
The OpenSSL code is based on the distributed source code[1] by KISA.

ARIA has three key sizes and corresponding rounds.
ARIA128: 12 rounds.
ARIA192: 14 rounds.
ARIA245: 16 rounds.

[1] https://seed.kisa.or.kr/kisa/Board/19/detailView.do (Korean)

Signed-off-by: Taehee Yoo <ap420073@gmail.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
crypto/Kconfig
crypto/Makefile
crypto/aria.c [new file with mode: 0644]
include/crypto/aria.h [new file with mode: 0644]