diff options
author | Corentin Labbe <clabbe@baylibre.com> | 2020-09-18 10:23:01 +0300 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2020-09-25 10:48:17 +0300 |
commit | d9b45418a91773b7672e4c60037a28074b495c6d (patch) | |
tree | 5c0f039d51bdd7e8ae606542dddce8e369b63b1f /drivers/crypto/allwinner/sun8i-ss/Makefile | |
parent | ac2614d721dea2ff273af19c6c5d508d58a2bb3e (diff) | |
download | linux-d9b45418a91773b7672e4c60037a28074b495c6d.tar.xz |
crypto: sun8i-ss - support hash algorithms
The SS support multiples hash algorithms, this patch adds support for
MD5, SHA1, SHA224 and SHA256.
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-ss/Makefile')
-rw-r--r-- | drivers/crypto/allwinner/sun8i-ss/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/crypto/allwinner/sun8i-ss/Makefile b/drivers/crypto/allwinner/sun8i-ss/Makefile index 49f2f912c816..aabfd893c817 100644 --- a/drivers/crypto/allwinner/sun8i-ss/Makefile +++ b/drivers/crypto/allwinner/sun8i-ss/Makefile @@ -1,3 +1,4 @@ obj-$(CONFIG_CRYPTO_DEV_SUN8I_SS) += sun8i-ss.o sun8i-ss-y += sun8i-ss-core.o sun8i-ss-cipher.o sun8i-ss-$(CONFIG_CRYPTO_DEV_SUN8I_SS_PRNG) += sun8i-ss-prng.o +sun8i-ss-$(CONFIG_CRYPTO_DEV_SUN8I_SS_HASH) += sun8i-ss-hash.o |