diff options
author | Ondrej Mosnacek <omosnacek@gmail.com> | 2018-05-11 08:19:09 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2018-05-18 12:15:00 -0400 |
commit | 396be41f16fd05af6c914eeb2c96e0cc2dadf28c (patch) | |
tree | da3d6b025a6e09b2d8e8c3142d8d88f4d9182fc6 /crypto/Makefile | |
parent | 1d373d4e8e15b358f08de52956b32e0e38a11f84 (diff) |
crypto: morus - Add generic MORUS AEAD implementations
This patch adds the generic implementation of the MORUS family of AEAD
algorithms (MORUS-640 and MORUS-1280). The original authors of MORUS
are Hongjun Wu and Tao Huang.
At the time of writing, MORUS 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/morusv2.pdf
Signed-off-by: Ondrej Mosnacek <omosnacek@gmail.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/Makefile')
-rw-r--r-- | crypto/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/Makefile b/crypto/Makefile index f2008d493a28..6d1d40eeb964 100644 --- a/crypto/Makefile +++ b/crypto/Makefile | |||
@@ -89,6 +89,8 @@ obj-$(CONFIG_CRYPTO_CHACHA20POLY1305) += chacha20poly1305.o | |||
89 | obj-$(CONFIG_CRYPTO_AEGIS128) += aegis128.o | 89 | obj-$(CONFIG_CRYPTO_AEGIS128) += aegis128.o |
90 | obj-$(CONFIG_CRYPTO_AEGIS128L) += aegis128l.o | 90 | obj-$(CONFIG_CRYPTO_AEGIS128L) += aegis128l.o |
91 | obj-$(CONFIG_CRYPTO_AEGIS256) += aegis256.o | 91 | obj-$(CONFIG_CRYPTO_AEGIS256) += aegis256.o |
92 | obj-$(CONFIG_CRYPTO_MORUS640) += morus640.o | ||
93 | obj-$(CONFIG_CRYPTO_MORUS1280) += morus1280.o | ||
92 | obj-$(CONFIG_CRYPTO_PCRYPT) += pcrypt.o | 94 | obj-$(CONFIG_CRYPTO_PCRYPT) += pcrypt.o |
93 | obj-$(CONFIG_CRYPTO_CRYPTD) += cryptd.o | 95 | obj-$(CONFIG_CRYPTO_CRYPTD) += cryptd.o |
94 | obj-$(CONFIG_CRYPTO_MCRYPTD) += mcryptd.o | 96 | obj-$(CONFIG_CRYPTO_MCRYPTD) += mcryptd.o |