Files
Linux_Drivers/u-boot-2021.10/lib/ecdsa/Kconfig
sam.xiang f8fc109960 [uboot] create uboot from github:
repo: https://github.com/u-boot/u-boot
	commit: d80bb749fab53da72c4a0e09b8c2d2aaa3103c91

Change-Id: Ie6434426e1ec15bc08bb1832798e371f3fd5fb29
2023-03-10 20:30:57 +08:00

24 lines
692 B
Plaintext

config ECDSA
bool "Enable ECDSA support"
depends on DM
help
This enables the ECDSA (elliptic curve signature) algorithm for FIT
image verification in U-Boot. The ECDSA algorithm is implemented
using the driver model, so CONFIG_DM is required by this library.
See doc/uImage.FIT/signature.txt for more details.
ECDSA is enabled for mkimage regardless of this option.
if ECDSA
config ECDSA_VERIFY
bool "Enable ECDSA verification support in U-Boot."
help
Allow ECDSA signatures to be recognized and verified in U-Boot.
config SPL_ECDSA_VERIFY
bool "Enable ECDSA verification support in SPL"
help
Allow ECDSA signatures to be recognized and verified in SPL.
endif