Kconfig 695 B

12345678910111213141516171819202122
  1. #
  2. config INTEGRITY
  3. def_bool y
  4. depends on IMA || EVM
  5. config INTEGRITY_SIGNATURE
  6. boolean "Digital signature verification using multiple keyrings"
  7. depends on INTEGRITY && KEYS
  8. default n
  9. select SIGNATURE
  10. help
  11. This option enables digital signature verification support
  12. using multiple keyrings. It defines separate keyrings for each
  13. of the different use cases - evm, ima, and modules.
  14. Different keyrings improves search performance, but also allow
  15. to "lock" certain keyring to prevent adding new keys.
  16. This is useful for evm and module keyrings, when keys are
  17. usually only added from initramfs.
  18. source security/integrity/ima/Kconfig
  19. source security/integrity/evm/Kconfig