summaryrefslogtreecommitdiff
path: root/lib/ecdsa/Kconfig
blob: 5c3d67d8144b48860154cac84fe8aa38e0df2547 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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"
	depends on SPL
	help
	  Allow ECDSA signatures to be recognized and verified in SPL.

endif