Kconfig 843 B

1234567891011121314151617181920212223
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. config ECRYPT_FS
  3. tristate "eCrypt filesystem layer support"
  4. depends on KEYS && CRYPTO && (ENCRYPTED_KEYS || ENCRYPTED_KEYS=n)
  5. select CRYPTO_ECB
  6. select CRYPTO_CBC
  7. select CRYPTO_MD5
  8. help
  9. Encrypted filesystem that operates on the VFS layer. See
  10. <file:Documentation/filesystems/ecryptfs.rst> to learn more about
  11. eCryptfs. Userspace components are required and can be
  12. obtained from <http://ecryptfs.sf.net>.
  13. To compile this file system support as a module, choose M here: the
  14. module will be called ecryptfs.
  15. config ECRYPT_FS_MESSAGING
  16. bool "Enable notifications for userspace key wrap/unwrap"
  17. depends on ECRYPT_FS
  18. help
  19. Enables the /dev/ecryptfs entry for use by ecryptfsd. This allows
  20. for userspace to wrap/unwrap file encryption keys by other
  21. backends, like OpenSSL.