Blame view

fs/crypto/Kconfig 483 Bytes
0b81d0779   Jaegeuk Kim   fs crypto: move p...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  config FS_ENCRYPTION
  	tristate "FS Encryption (Per-file encryption)"
  	depends on BLOCK
  	select CRYPTO
  	select CRYPTO_AES
  	select CRYPTO_CBC
  	select CRYPTO_ECB
  	select CRYPTO_XTS
  	select CRYPTO_CTS
  	select CRYPTO_CTR
  	select CRYPTO_SHA256
  	select KEYS
  	select ENCRYPTED_KEYS
  	help
  	  Enable encryption of files and directories.  This
  	  feature is similar to ecryptfs, but it is more memory
  	  efficient since it avoids caching the encrypted and
  	  decrypted pages in the page cache.