forked from OERV-BSP/u-boot
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>
13 lines
337 B
Plaintext
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.
|