Skip to content

Commit

Permalink
crypto: stm32 - Support for STM32 HASH module
Browse files Browse the repository at this point in the history
This module register a HASH module that support multiples
algorithms: MD5, SHA1, SHA224, SHA256.

It includes the support of HMAC hardware processing corresponding
to the supported algorithms. DMA or IRQ mode are used depending
on data length.

Signed-off-by: Lionel Debieve <lionel.debieve@st.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
  • Loading branch information
lionel.debieve@st.com authored and Herbert Xu committed Jul 28, 2017
1 parent 7bb952c commit 8a1012d
Show file tree
Hide file tree
Showing 3 changed files with 1,589 additions and 0 deletions.
13 changes: 13 additions & 0 deletions drivers/crypto/stm32/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,16 @@ config CRC_DEV_STM32
help
This enables support for the CRC32 hw accelerator which can be found
on STMicroelectronics STM32 SOC.

config HASH_DEV_STM32
tristate "Support for STM32 hash accelerators"
depends on ARCH_STM32
depends on HAS_DMA
select CRYPTO_HASH
select CRYPTO_MD5
select CRYPTO_SHA1
select CRYPTO_SHA256
select CRYPTO_ENGINE
help
This enables support for the HASH hw accelerator which can be found
on STMicroelectronics STM32 SOC.
1 change: 1 addition & 0 deletions drivers/crypto/stm32/Makefile
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
obj-$(CONFIG_CRC_DEV_STM32) += stm32_crc32.o
obj-$(CONFIG_HASH_DEV_STM32) += stm32-hash.o
Loading

0 comments on commit 8a1012d

Please sign in to comment.