I am trying to get hold of truecrypt for an armhf linux or something similar.
I was wondering if there were any sources to do this? or can anyone make a suggestion? I need it so when its ejected nothing is at risk from being left decrypted.
I am trying to get hold of truecrypt for an armhf linux or something similar.
I was wondering if there were any sources to do this? or can anyone make a suggestion? I need it so when its ejected nothing is at risk from being left decrypted.
I just added a armhf to my truecrypt PPA. I have only tested it on a Raspberry Pi and it worked great. See: https://launchpad.net/~stefansundin/+archive/truecrypt
On Raspbian you can run the following to install:
echo 'deb http://ppa.launchpad.net/stefansundin/truecrypt/ubuntu xenial main' | sudo tee /etc/apt/sources.list.d/truecrypt.list
gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-key FFE1FFFFAFEC55BB
gpg --export --armor FFE1FFFFAFEC55BB | sudo apt-key add -
sudo apt-get update
sudo apt-get install truecrypt
The version is 7.1a, and I do not intend to update to 7.2 because it has less functionality.
The best way to to “full-disk” (which really means full-partition) encryption on Linux is to use its native facility: dm-crypt. This is pretty much always easier to set up than a third-party tool (fewer layers), more secure (fewer layers), and faster (fewer layers, and also the encryption is done in the kernel which is usually optimized to take into account all processor features including, in your case, NEON).
Use cryptsetup to manipulate encrypted volumes. Cryptsetup can manipulate several formats; use the standard one, LUKS. To create an encrypted volume, use a command like
cryptsetup luksFormat /dev/sdz1
(Be sure to specify the right disk instead of /dev/sdz1
!)
When the disk is inserted, open the encrypted volume with
cryptsetup luksOpen /dev/sdz1 mysdcard
(You might do that with a udev rule — example)
Cryptsetup also supports a format that's compatible with TrueCrypt. The only reason to use this format (but it's a valid one) is if you want the removable disk to be also usable in Windows, which has TrueCrypt (or successors) but not LUKS.
cryptsetup luksFormat
and cryptsetup luksOpen
.
– Gilles 'SO- stop being evil'
Oct 15 '15 at 12:27