mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-18 03:23:53 -04:00
AES-CCM is an AEAD algorithm supporting both encryption and authentication of data. This patch introduces support for AES-CCM AEAD algorithm in the DTHEv2 driver. Signed-off-by: T Pratham <t-pratham@ti.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
20 lines
611 B
Plaintext
20 lines
611 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
config CRYPTO_DEV_TI_DTHEV2
|
|
tristate "Support for TI DTHE V2 cryptography engine"
|
|
depends on ARCH_K3 || COMPILE_TEST
|
|
select CRYPTO_ENGINE
|
|
select CRYPTO_SKCIPHER
|
|
select CRYPTO_ECB
|
|
select CRYPTO_CBC
|
|
select CRYPTO_CTR
|
|
select CRYPTO_XTS
|
|
select CRYPTO_GCM
|
|
select CRYPTO_CCM
|
|
select SG_SPLIT
|
|
help
|
|
This enables support for the TI DTHE V2 hw cryptography engine
|
|
which can be found on TI K3 SOCs. Selecting this enables use
|
|
of hardware offloading for cryptographic algorithms on
|
|
these devices, providing enhanced resistance against side-channel
|
|
attacks.
|