blob: f0de238000c026f4ad65fe43e44c9d8ea8d01e62 [file] [log] [blame]
Jaegeuk Kim0b81d072015-05-15 16:26:10 -07001config FS_ENCRYPTION
Chandan Rajendra3ce5fa32018-12-12 15:20:12 +05302 bool "FS Encryption (Per-file encryption)"
Jaegeuk Kim0b81d072015-05-15 16:26:10 -07003 select CRYPTO
4 select CRYPTO_AES
5 select CRYPTO_CBC
6 select CRYPTO_ECB
7 select CRYPTO_XTS
8 select CRYPTO_CTS
Eric Biggersf4b272152018-09-05 12:24:00 -07009 select CRYPTO_SHA256
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070010 select KEYS
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070011 help
12 Enable encryption of files and directories. This
13 feature is similar to ecryptfs, but it is more memory
14 efficient since it avoids caching the encrypted and
Chandan Rajendra3ce5fa32018-12-12 15:20:12 +053015 decrypted pages in the page cache. Currently Ext4,
16 F2FS and UBIFS make use of this feature.