Kconfig 843 B

123456789101112131415161718192021222324252627
  1. config RSA
  2. bool "Use RSA Library"
  3. select RSA_FREESCALE_EXP if FSL_CAAM
  4. select RSA_SOFTWARE_EXP if !RSA_FREESCALE_EXP
  5. help
  6. RSA support. This enables the RSA algorithm used for FIT image
  7. verification in U-Boot.
  8. See doc/uImage.FIT/signature.txt for more details.
  9. if RSA
  10. config RSA_SOFTWARE_EXP
  11. bool "Enable driver for RSA Modular Exponentiation in software"
  12. depends on DM && RSA
  13. help
  14. Enables driver for modular exponentiation in software. This is a RSA
  15. algorithm used in FIT image verification. It required RSA Key as
  16. input.
  17. See doc/uImage.FIT/signature.txt for more details.
  18. config RSA_FREESCALE_EXP
  19. bool "Enable RSA Modular Exponentiation with FSL crypto accelerator"
  20. depends on DM && RSA && FSL_CAAM
  21. help
  22. Enables driver for RSA modular exponentiation using Freescale cryptographic
  23. accelerator - CAAM.
  24. endif