diff options
author | Corentin Labbe <clabbe@baylibre.com> | 2020-09-18 09:23:10 +0200 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2020-09-25 09:48:18 +0200 |
commit | 56f6d5aee88d129b2424902cd630f10794550763 (patch) | |
tree | a864c573de6f802eebfcc3d3ec4a8fc4c5577d85 /drivers/crypto/allwinner/sun8i-ce/Makefile | |
parent | crypto: sun8i-ce - rename has_t_dlen_in_bytes to cipher_t_dlen_in_bytes (diff) | |
download | linux-56f6d5aee88d129b2424902cd630f10794550763.tar.xz linux-56f6d5aee88d129b2424902cd630f10794550763.zip |
crypto: sun8i-ce - support hash algorithms
The CE support multiples hash algorithms, this patch adds support for
MD5, SHA1, SHA224, SHA256, SHA384 and SHA512.
Signed-off-by: Corentin Labbe <clabbe@baylibre.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto/allwinner/sun8i-ce/Makefile')
-rw-r--r-- | drivers/crypto/allwinner/sun8i-ce/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/crypto/allwinner/sun8i-ce/Makefile b/drivers/crypto/allwinner/sun8i-ce/Makefile index 08b68c3c1ca9..d1b1f0e86c79 100644 --- a/drivers/crypto/allwinner/sun8i-ce/Makefile +++ b/drivers/crypto/allwinner/sun8i-ce/Makefile @@ -1,2 +1,3 @@ obj-$(CONFIG_CRYPTO_DEV_SUN8I_CE) += sun8i-ce.o sun8i-ce-y += sun8i-ce-core.o sun8i-ce-cipher.o +sun8i-ce-$(CONFIG_CRYPTO_DEV_SUN8I_CE_HASH) += sun8i-ce-hash.o |