Linux Audio

Check our new training course

Real-Time Linux with PREEMPT_RT training

Feb 18-20, 2025
Register
Loading...
v4.6
 1config FS_ENCRYPTION
 2	tristate "FS Encryption (Per-file encryption)"
 3	depends on BLOCK
 4	select CRYPTO
 5	select CRYPTO_AES
 6	select CRYPTO_CBC
 7	select CRYPTO_ECB
 8	select CRYPTO_XTS
 9	select CRYPTO_CTS
10	select CRYPTO_CTR
11	select CRYPTO_SHA256
12	select KEYS
13	select ENCRYPTED_KEYS
14	help
15	  Enable encryption of files and directories.  This
16	  feature is similar to ecryptfs, but it is more memory
17	  efficient since it avoids caching the encrypted and
18	  decrypted pages in the page cache.
v4.17
 1config FS_ENCRYPTION
 2	tristate "FS Encryption (Per-file encryption)"
 
 3	select CRYPTO
 4	select CRYPTO_AES
 5	select CRYPTO_CBC
 6	select CRYPTO_ECB
 7	select CRYPTO_XTS
 8	select CRYPTO_CTS
 9	select CRYPTO_CTR
10	select CRYPTO_SHA256
11	select KEYS
 
12	help
13	  Enable encryption of files and directories.  This
14	  feature is similar to ecryptfs, but it is more memory
15	  efficient since it avoids caching the encrypted and
16	  decrypted pages in the page cache.