Kconfig 637 B

123456789101112131415161718192021222324252627
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see the file kconfig-language.txt in the NuttX tools repository.
  4. #
  5. menuconfig BCH
  6. bool "Block-to-Character (BCH) Support"
  7. default n
  8. ---help---
  9. Contains logic that may be used to convert a block driver into
  10. a character driver. This is the complementary conversion as that
  11. performed by loop.c. See include/nuttx/drivers/drivers.h for
  12. registration information.
  13. if BCH
  14. config BCH_ENCRYPTION
  15. bool "Enable BCH encryption"
  16. default n
  17. depends on CRYPTO_AES
  18. config BCH_ENCRYPTION_KEY_SIZE
  19. int "AES key size"
  20. default 16
  21. depends on BCH_ENCRYPTION
  22. endif # BCH