blob: 5c3d67d8144b48860154cac84fe8aa38e0df2547 [file] [log] [blame]
Alexandru Gagniuc928a8be2021-07-29 11:47:16 -05001config ECDSA
2 bool "Enable ECDSA support"
3 depends on DM
4 help
5 This enables the ECDSA (elliptic curve signature) algorithm for FIT
6 image verification in U-Boot. The ECDSA algorithm is implemented
7 using the driver model, so CONFIG_DM is required by this library.
8 See doc/uImage.FIT/signature.txt for more details.
9 ECDSA is enabled for mkimage regardless of this option.
10
11if ECDSA
12
13config ECDSA_VERIFY
14 bool "Enable ECDSA verification support in U-Boot."
15 help
16 Allow ECDSA signatures to be recognized and verified in U-Boot.
17
18config SPL_ECDSA_VERIFY
19 bool "Enable ECDSA verification support in SPL"
Tom Rinib3401992022-06-10 23:03:09 -040020 depends on SPL
Alexandru Gagniuc928a8be2021-07-29 11:47:16 -050021 help
22 Allow ECDSA signatures to be recognized and verified in SPL.
23
24endif