Kconfig 708 B

123456789101112131415161718192021222324
  1. config 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. if ECDSA
  11. config ECDSA_VERIFY
  12. bool "Enable ECDSA verification support in U-Boot."
  13. help
  14. Allow ECDSA signatures to be recognized and verified in U-Boot.
  15. config SPL_ECDSA_VERIFY
  16. bool "Enable ECDSA verification support in SPL"
  17. depends on SPL
  18. help
  19. Allow ECDSA signatures to be recognized and verified in SPL.
  20. endif