With 14.04 whole disk encryption can one add multiple passphrases and/or revoke them ?
Asked
Active
Viewed 1,319 times
3
-
You should specify which kind of disk encryption protocol you're asking about. There's cryptoloop, dm-crypt, LUKS, TrueCrypt, … – David Foerster Nov 05 '14 at 20:09
2 Answers
3
LUKS:
Basically as far as I know LUKS lets you modify 8 passphrase slots and you can do that with:
sudo cryptsetup luksAddKey <device>
sudo cryptsetup luksRemoveKey <device>
sudo cryptsetup luksChangeKey <device>
sudo cryptsetup luksKillSlot <device> <key slot number>
LUKS stores slots as 0,1,2 etc. But I recommend you to be very careful with LUKS as you may lock yourself out. Please refer to manual of cryptsetup.
You may need to reboot the machine and try your new passsphrase as well before you remove the key.
Gnome-disk-utility
also lets you change the passphrases.
-
How can i add different passkey in disk.so i can use both key to access that disk. – sohel4r Nov 15 '14 at 05:21
-
0
That link provide everything about encryption.He asked about different (add multiple passphrase)

sohel4r
- 464