aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/crypto/stm32/Makefile
diff options
context:
space:
mode:
authorFabien DESSENNE <fabien.dessenne@st.com>2017-10-19 17:10:30 +0200
committerHerbert Xu <herbert@gondor.apana.org.au>2017-11-29 16:43:42 +1100
commit9e054ec21ef8344345b28603fb272fe999f735db (patch)
tree188ba9433010ed5cc6611541b09d23e42153ea44 /drivers/crypto/stm32/Makefile
parentdt-bindings: Document STM32 CRYP bindings (diff)
downloadlinux-dev-9e054ec21ef8344345b28603fb272fe999f735db.tar.xz
linux-dev-9e054ec21ef8344345b28603fb272fe999f735db.zip
crypto: stm32 - Support for STM32 CRYP crypto module
This module registers block cipher algorithms that make use of the STMicroelectronics STM32 crypto "CRYP1" hardware. The following algorithms are supported: - aes: ecb, cbc, ctr - des: ecb, cbc - tdes: ecb, cbc Signed-off-by: Fabien Dessenne <fabien.dessenne@st.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto/stm32/Makefile')
-rw-r--r--drivers/crypto/stm32/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/crypto/stm32/Makefile b/drivers/crypto/stm32/Makefile
index 73cd56cad0cc..2c19fc155bfd 100644
--- a/drivers/crypto/stm32/Makefile
+++ b/drivers/crypto/stm32/Makefile
@@ -1,2 +1,3 @@
obj-$(CONFIG_CRC_DEV_STM32) += stm32_crc32.o
-obj-$(CONFIG_HASH_DEV_STM32) += stm32-hash.o \ No newline at end of file
+obj-$(CONFIG_HASH_DEV_STM32) += stm32-hash.o
+obj-$(CONFIG_CRYP_DEV_STM32) += stm32-cryp.o