When encrypting a user's home directory, either during the install procedure or later using ecryptfs-migrate-home, what encryption algorithm / key size is used by default?
Tell me more
×
Ask Ubuntu is a question and answer site for
Ubuntu users and developers. It's 100% free, no registration required.
|
The default It can be shown during the creation of a new encrypted mount point of folder that only aes is presently loaded but
Default selected cipher is between |
||||
|
|
|
The above answer is right, that AES is the cipher, but the reasoning is wrong. User's home directories are configured by the script ecryptfs-setup-private. In that shell script, the cipher and key length are harcoded:
Likewise, in the C source code of the setuid mount helper, mount.ecryptfs_private, it is also hardcoded:
These values were hard coded to minimize the support burden of helping millions of users encrypt their home directories. |
|||
|
|