diff options
author | Thara Gopinath <thara.gopinath@linaro.org> | 2021-04-29 17:07:04 +0200 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2021-05-14 13:07:55 +0200 |
commit | 9363efb4181c5e0fbf86bdfa759262aa29f0eb50 (patch) | |
tree | f2aabc25891d04685b91540952a98738e40862ec /drivers/crypto/qce/Makefile | |
parent | crypto: qce - Add mode for rfc4309 (diff) | |
download | linux-9363efb4181c5e0fbf86bdfa759262aa29f0eb50.tar.xz linux-9363efb4181c5e0fbf86bdfa759262aa29f0eb50.zip |
crypto: qce - Add support for AEAD algorithms
Introduce support to enable following algorithms in Qualcomm Crypto Engine.
- authenc(hmac(sha1),cbc(des))
- authenc(hmac(sha1),cbc(des3_ede))
- authenc(hmac(sha256),cbc(des))
- authenc(hmac(sha256),cbc(des3_ede))
- authenc(hmac(sha256),cbc(aes))
- ccm(aes)
- rfc4309(ccm(aes))
Signed-off-by: Thara Gopinath <thara.gopinath@linaro.org>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto/qce/Makefile')
-rw-r--r-- | drivers/crypto/qce/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/crypto/qce/Makefile b/drivers/crypto/qce/Makefile index 14ade8a7d664..2cf8984e1b85 100644 --- a/drivers/crypto/qce/Makefile +++ b/drivers/crypto/qce/Makefile @@ -6,3 +6,4 @@ qcrypto-objs := core.o \ qcrypto-$(CONFIG_CRYPTO_DEV_QCE_SHA) += sha.o qcrypto-$(CONFIG_CRYPTO_DEV_QCE_SKCIPHER) += skcipher.o +qcrypto-$(CONFIG_CRYPTO_DEV_QCE_AEAD) += aead.o |