Files
u-boot/drivers/crypto/aes/Kconfig
Ion Agorria a2e86dafd7 crypto: aes: Add software AES DM driver
This adds AES crypto engine using the AES Uclass implemented in software,
serves as example implementation and for uclass tests.

Those implementing HW AES crypto engine drivers can use this as basis and
replace software parts with the HW specifics of their device.

Signed-off-by: Ion Agorria <ion@agorria.com>
2025-07-11 10:43:29 -06:00

13 lines
337 B
Plaintext

config DM_AES
bool "Enable Driver Model for AES crypto operations"
depends on DM
help
If you want to use driver model for AES crypto operations, say Y.
config AES_SOFTWARE
bool "Enable driver for AES in software"
depends on DM_AES && AES
help
Enable driver for AES crypto operations in software. Uses U-Boot
AES library.