Yet another thing that has been on my TODO list for quite a while: encrypted USB thumb drives and/or encrypted external USB hard drives.
I have finally tried this over the weekend using loop-AES. This is very useful for securing your USB thumb drive contents in case you lose it or it gets stolen. Also, I use an external USB hard drive for backups (previously unencrypted). This is encryped now, too.
Here's a quick HOWTO:
AES encrypted loop device support" in "Device Drivers -> Block Devices -> Loopback device support", and recompile the kernel.loop encryption key scrubbing support" as it seems to promise higher security (can anybody confirm that?).apt-get install loop-aes-2.6-686 (or a similar package) should suffice.
losetup, mount etc.:apt-get install loop-aes-utils
shred -n 1 -v /dev/sda3.-n 25 or higher if you want more security and have a few days time to wait for the thing to finish...
losetup -e aes256 -C 3 -S 'seed' /dev/loop0 /dev/sda3.-C 3 means "run hashed password through 3000 iterations of AES-256 before using it for loop encryption. This consumes lots of CPU cycles at loop setup/mount time but not thereafter." (see losetup(8)). This is supposed to be more secure.-S 'seed' (replace "seed" with a secret string like "g7sN4" or something) should make brute force attacks a bit harder. Don't forget the seed!mke2fs -j /dev/loop0losetup -d /dev/loop0/etc/fstab:/dev/sda3 /mnt/crypted_sda3 ext3 noauto,loop=/dev/loop0,encryption=AES256,itercountk=3 0 0
mount -o pseed=seed /mnt/crypted_sda3/mnt/crypted_sda3 which will be encrypted automatically.For a more detailed guide read the Encrypted-Root-Filesystem-HOWTO. A performance comparison of different ciphers is available, but in general I didn't notice too much of a slow-down because of the encryption...
Recent comments
20 weeks 4 days ago
46 weeks 5 days ago
1 year 2 weeks ago
1 year 2 weeks ago
1 year 2 weeks ago