crypto: aegis - Add generic AEGIS AEAD implementations
authorOndrej Mosnacek <omosnacek@gmail.com>
Fri, 11 May 2018 12:12:49 +0000 (14:12 +0200)
committerHerbert Xu <herbert@gondor.apana.org.au>
Fri, 18 May 2018 16:13:58 +0000 (00:13 +0800)
commitf606a88e58230c30f5d56a53eff8da6fdbf1e4ee
tree18c37d9d32d953978f5e88ed0ee8b414afa50b05
parent15f47ce57572adaeddd763b7086e52fccc23ed7c
crypto: aegis - Add generic AEGIS AEAD implementations

This patch adds the generic implementation of the AEGIS family of AEAD
algorithms (AEGIS-128, AEGIS-128L, and AEGIS-256). The original
authors of AEGIS are Hongjun Wu and Bart Preneel.

At the time of writing, AEGIS is one of the finalists in CAESAR, an
open competition intended to select a portfolio of alternatives to
the problematic AES-GCM:

https://competitions.cr.yp.to/caesar-submissions.html
https://competitions.cr.yp.to/round3/aegisv11.pdf

Signed-off-by: Ondrej Mosnacek <omosnacek@gmail.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
crypto/Kconfig
crypto/Makefile
crypto/aegis.h [new file with mode: 0644]
crypto/aegis128.c [new file with mode: 0644]
crypto/aegis128l.c [new file with mode: 0644]
crypto/aegis256.c [new file with mode: 0644]