diff options
author | 2017-10-19 17:10:30 +0200 | |
---|---|---|
committer | 2017-11-29 16:43:42 +1100 | |
commit | 9e054ec21ef8344345b28603fb272fe999f735db (patch) | |
tree | 188ba9433010ed5cc6611541b09d23e42153ea44 /drivers/crypto/stm32/Kconfig | |
parent | dt-bindings: Document STM32 CRYP bindings (diff) | |
download | linux-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/Kconfig')
-rw-r--r-- | drivers/crypto/stm32/Kconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/crypto/stm32/Kconfig b/drivers/crypto/stm32/Kconfig index 602332e02729..61ef00b6bf45 100644 --- a/drivers/crypto/stm32/Kconfig +++ b/drivers/crypto/stm32/Kconfig @@ -18,3 +18,12 @@ config HASH_DEV_STM32 help This enables support for the HASH hw accelerator which can be found on STMicroelectronics STM32 SOC. + +config CRYP_DEV_STM32 + tristate "Support for STM32 cryp accelerators" + depends on ARCH_STM32 + select CRYPTO_HASH + select CRYPTO_ENGINE + help + This enables support for the CRYP (AES/DES/TDES) hw accelerator which + can be found on STMicroelectronics STM32 SOC. |