diff options
author | Martin Willi <martin@strongswan.org> | 2015-06-01 07:44:00 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2015-06-04 03:04:52 -0400 |
commit | 71ebc4d1b27d345342bdcb32a29c8cc3da8c6654 (patch) | |
tree | b3f14e0e2406cb7e9c3200d6a8fe807f6646f691 /crypto/Makefile | |
parent | eee9dc6162c537641a9259ae595193fa3c68c96e (diff) |
crypto: chacha20poly1305 - Add a ChaCha20-Poly1305 AEAD construction, RFC7539
This AEAD uses a chacha20 ablkcipher and a poly1305 ahash to construct the
ChaCha20-Poly1305 AEAD as defined in RFC7539. It supports both synchronous and
asynchronous operations, even if we currently have no async chacha20 or poly1305
drivers.
Signed-off-by: Martin Willi <martin@strongswan.org>
Acked-by: Steffen Klassert <steffen.klassert@secunet.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/Makefile')
-rw-r--r-- | crypto/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/Makefile b/crypto/Makefile index 2424c81d69bc..e6cf6a5426ab 100644 --- a/crypto/Makefile +++ b/crypto/Makefile | |||
@@ -59,6 +59,7 @@ obj-$(CONFIG_CRYPTO_XTS) += xts.o | |||
59 | obj-$(CONFIG_CRYPTO_CTR) += ctr.o | 59 | obj-$(CONFIG_CRYPTO_CTR) += ctr.o |
60 | obj-$(CONFIG_CRYPTO_GCM) += gcm.o | 60 | obj-$(CONFIG_CRYPTO_GCM) += gcm.o |
61 | obj-$(CONFIG_CRYPTO_CCM) += ccm.o | 61 | obj-$(CONFIG_CRYPTO_CCM) += ccm.o |
62 | obj-$(CONFIG_CRYPTO_CHACHA20POLY1305) += chacha20poly1305.o | ||
62 | obj-$(CONFIG_CRYPTO_PCRYPT) += pcrypt.o | 63 | obj-$(CONFIG_CRYPTO_PCRYPT) += pcrypt.o |
63 | obj-$(CONFIG_CRYPTO_CRYPTD) += cryptd.o | 64 | obj-$(CONFIG_CRYPTO_CRYPTD) += cryptd.o |
64 | obj-$(CONFIG_CRYPTO_MCRYPTD) += mcryptd.o | 65 | obj-$(CONFIG_CRYPTO_MCRYPTD) += mcryptd.o |