2021-01-20 12:03:36 +01:00
|
|
|
# Copyright (c) 2021 HAW Hamburg
|
|
|
|
#
|
|
|
|
# This file is subject to the terms and conditions of the GNU Lesser
|
|
|
|
# General Public License v2.1. See the file LICENSE in the top level
|
|
|
|
# directory for more details.
|
|
|
|
#
|
|
|
|
|
2021-04-22 09:55:03 +02:00
|
|
|
menuconfig MODULE_CRYPTO
|
|
|
|
bool "Crypto"
|
2021-01-20 12:03:36 +01:00
|
|
|
depends on TEST_KCONFIG
|
|
|
|
|
2021-04-22 09:55:03 +02:00
|
|
|
if MODULE_CRYPTO
|
2021-01-20 12:03:36 +01:00
|
|
|
|
|
|
|
menu "Crypto AES options"
|
2021-04-14 22:18:59 +02:00
|
|
|
|
|
|
|
config MODULE_CRYPTO_AES_128
|
|
|
|
bool "AES-128"
|
|
|
|
default y
|
|
|
|
|
|
|
|
config MODULE_CRYPTO_AES_192
|
|
|
|
bool "AES-192"
|
|
|
|
|
|
|
|
config MODULE_CRYPTO_AES_256
|
|
|
|
bool "AES-256"
|
2021-01-20 12:03:36 +01:00
|
|
|
|
|
|
|
config MODULE_CRYPTO_AES_PRECALCULATED
|
|
|
|
bool "Pre-calculate T tables"
|
|
|
|
|
|
|
|
config MODULE_CRYPTO_AES_UNROLL
|
|
|
|
bool "Unroll loop in AES"
|
|
|
|
help
|
|
|
|
This unrolls a loop in AES, but it uses more flash.
|
|
|
|
|
|
|
|
endmenu # Crypto AES options
|
|
|
|
|
2023-08-29 19:25:14 +02:00
|
|
|
rsource "psa_riot_cipher/Kconfig"
|
2021-01-20 12:03:36 +01:00
|
|
|
rsource "modes/Kconfig"
|
|
|
|
|
2021-04-22 09:55:03 +02:00
|
|
|
endif # Crypto
|