24 lines
622 B
Plaintext
24 lines
622 B
Plaintext
|
# STM32 Cryptographic Accelerator configuration options
|
||
|
|
||
|
# Copyright (c) 2020 Markus Fuchs <markus.fuchs@de.sauter-bc.com>
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
menuconfig CRYPTO_STM32
|
||
|
bool "STM32 Cryptographic Accelerator driver"
|
||
|
depends on SOC_FAMILY_STM32
|
||
|
select USE_STM32_HAL_CRYP
|
||
|
select USE_STM32_HAL_CRYP_EX
|
||
|
help
|
||
|
Enable STM32 HAL-based Cryptographic Accelerator driver.
|
||
|
|
||
|
if CRYPTO_STM32
|
||
|
|
||
|
config CRYPTO_STM32_MAX_SESSION
|
||
|
int "Maximum of sessions STM32 crypto driver can handle"
|
||
|
default 2
|
||
|
help
|
||
|
This can be used to tweak the amount of sessions the driver
|
||
|
can handle in parallel.
|
||
|
|
||
|
endif # CRYPTO_STM32
|