Tech Advisor

Linux encryption tools

reveals why everyone benefits from keeping data safe from prying eyes

- Alex Campbell

Encryption is an interestin­g thing. The first time this writer saw encryption in action was on a colleague’s Gentoo Linux laptop that could boot only if the USB key with the boot partition and decryption key was inserted. Interestin­g stuff, from a geek point of view.

Fast forward, and revelation­s from Edward Snowden and ongoing concerns about government snooping are slowly bringing encryption and privacy tools into the mainstream. Even if you’re not worried about a Big Brother or some shady spy-versusspy scenario, encryption can still protect your identity and privacy if your laptop is stolen. Think of all the things we keep on our laptops: contact informatio­n, financial details, and client and company data. All of that is worthy of protection. Luckily, Linux users have access to several tools for free.

There are three main methods for protecting the data on your laptop, each with its own strengths and weaknesses.

OpenPGP and email encryption

1

Using Pretty Good Privacy (PGP) encryption to protect email isn’t anything new. While the original PGP implementa­tion is proprietar­y, the OpenPGP specificat­ion was written in 1997. OpenPGP uses publickey cryptograp­hy, which means every keypair comes with a private and public key. You use a private key (that you keep secret) to unlock and sign files, while a public key (that you give to people) can be used to encrypt files to you and verify files you’ve signed.

In the context of email, your plaintext email is encrypted with a public key into either a file or ASCII cyphertext (which looks random to people and machines) that can only be read by someone with the matching private key. In basic terms, this means that the email is encrypted before it leaves your PC, so no amount of snooping on the email server you’re using will allow someone to see the contents of the file. This is known as end-to-end encryption. (Metadata, such as the subject line, recipients, and time sent are all left in plaintext, though.)

The most widely used implementa­tion of this standard (as far as Linux users are concerned) is GNU Privacy Guard (tinyurl.com/LL78vuc). Most modern Linux distributi­ons come with GnuPG preinstall­ed. If it isn’t, it can be easily found using your distributi­on’s package manager, usually with the name gpg.

While you can use GPG on the command line, it’s often easier to create and manage keys using a GUI program. The GnuPG team provides the GNU Privacy Assistant (tinyurl.com/jfr5c3m) GUI to create and manage keys. If you prefer a KDE-compatible interface, you can install Kleopatra, while GNOME 3 users might prefer GNOME’s Seahorse. GnuPG is also available for Windows using GPG4Win, which provides Windows versions of both Kleopatra and GPA. Before you can encrypt files or email with OpenPGP, you’ll need to create your first keypair. When you create your key you’ll need to provide (at least) a name and email address to help identify the key. You’ll also need to provide a key strength. While a 2048-bit key is considered pretty safe, a 4096-bit key will provide more protection, though at the expense of slightly longer times for key creation, encryption, and decryption. How you set up GnuPG for use with your email will vary depending on the client you use. If you use Mozilla’s Thunderbir­d, you’ll need to install the Enigmail extension (tinyurl.com/zsussLe). Both KDE’s KMail and GNOME’s Evolution support OpenPGP natively. KDE’s online documentat­ion provides a manual for GPG integratio­n with KMail (tinyurl.com/j728d5h), and Fedora has a great how-to for Evolution (tinyurl.com/ckzf9rw). There are a few browser plugins such as Mailvelope (which offers add-ons for both Chromium/Chrome and Firefox) that work pretty well for those who prefer webmail (tinyurl.com/bozjz8r). GnuPG provides a great in-depth online manual on how OpenPGP works and how to use the GnuPG tools (tinyurl.com/6dktac).

Encrypted containers

2

Not everything you want to keep secret or secure is a text file or email. To secure groups of files, some people prefer to use encrypted containers.

Containers are handy because they’re portable. In its simplest form, a container is

a lot like a zip file that’s encrypted. That file can be in your home folder, copied to a USB drive, stored in the cloud, or put anywhere else that’s convenient.

The most basic container can be a zip or gzipped tar file (.tar.gz) that you encrypt using OpenPGP. The downside to such a simple container is that you have to delete the plaintext (decrypted) file once you’re finished with it. If you have to modify or add files in the archive, you basically have to delete the old file and encrypt a new one.

A simpler and more secure way to handle containers is to use VeraCrypt (the successor to TrueCrypt). VeraCrypt is capable of creating encrypted containers of fixed size, which can help obscure the size of the files in the container. There’s a good tutorial on VeraCrypt’s website that explains how to create such a container (tinyurl.com/Ldqbj3p). The good thing about using a VeraCrypt container is that you can access its contents using VeraCrypt on both Windows and Linux.

Finally, there’s a tool called Tomb. Tomb is little more than a script, but it makes creating and managing containers and keys for dm-crypt really easy. The dm-crypt utility is standard to Linux and is its built-in disk encryption engine (I’ll get to more on that in a bit), but it can also be used to create containers. Tomb’s usage is quite simple, and the project website offers useful guidance (tinyurl.com/Ldywgf8).

Whole-disk encryption

3

Sometimes, it can be easier to encrypt everything on your system. That way, there’s little need to worry (for the most part) about what files are stored where. Everything is protected, so long as your PC is off.

Windows users may recall that VeraCrypt (or TrueCrypt) can encrypt drive partitions and entire disks. This can be done on Linux as well, but most users will likely prefer to use Linux’s built-in disk encryption tool, dm-crypt.

By itself, dm-crypt and its tool cryptsetup are very basic and can be a little cumbersome, since dm-crypt can only use a single key. Most people prefer to use Linux Unified Key Setup (LUKS) to manage keys for an encrypted device, which allows up to eight keys to be used with dm-crypt, such that any one key or passphrase supplied can unlock the drive. When using dm-crypt to encrypt a drive, a passphrase must be entered at boot time to unlock it.

We should also note that LUKS and dm-crypt are the underlying programs that Tomb uses to work its magic.

Setting up dm-crypt, LUKS, and optionally LVM (logical partitions) can be a messy task for a newbie. For users who feel up to the task, the Arch Linux Wiki has a great guide on using LUKS and dm-crypt to encrypt a system (tinyurl.com/zubfxpw). For those less inclined to get down and dirty with terminal commands, there’s an option to use LVM and LUKS drive encryption when you install Ubuntu or Debian.

There are a couple pitfalls when using whole-disk encryption. First, the boot partition (/boot) is usually left unencrypte­d, since the system has to boot to an initial ramdisk to get itself going. The system can’t do that if the ramdisk and boot partition are unreadable. (You actually can encrypt the boot partition, but it takes extra steps and is a bit more tricky.) The consequenc­e of this is that it if someone got their hands on your PC, they could theoretica­lly install a modified kernel that could harvest your passphrase. It’s an unlikely scenario, but technicall­y possible. This can be circumvent­ed by placing your boot partition on a USB thumb drive that you keep separate from the system.

The minute you turn on your PC and unlock the disk, files on the system can be read as though it weren’t encrypted at all. If your laptop is stolen and you don’t have a screen lock enabled, someone could simply compromise your system as long as it has power (which is very similar to device encryption on an Android phone).

Finally, SSDs present special problems because of the way they allocate and clear (or don’t clear) cells. You can still use an SSD with disk encryption, but extra steps should be taken when preparing the drive.

Even with a few pitfalls, we consider using disk encryption on laptops to be good practice. While encrypting desktops is less common because they are stolen less often, everyone has seen someone leave a laptop at a coffee shop or on a seat on a train. We rest a little easier knowing that if our laptop is ever taken, we’re only losing a device, not our privacy along with it. J

 ??  ?? To create a GnuPG keypair using the command line, use gpg —gen-key
To create a GnuPG keypair using the command line, use gpg —gen-key
 ??  ??
 ??  ?? Setting up a container and key using Tomb is really easy, if you’re comfortabl­e with the command line
Setting up a container and key using Tomb is really easy, if you’re comfortabl­e with the command line
 ??  ?? A partition tree viewed with lsblk. Note that the encrypted partition / dev/sda3 is host to the LVM partitions that are mounted to the root directory (/) and swap, while the boot partition (/dev/sda2) is unencrypte­d
A partition tree viewed with lsblk. Note that the encrypted partition / dev/sda3 is host to the LVM partitions that are mounted to the root directory (/) and swap, while the boot partition (/dev/sda2) is unencrypte­d

Newspapers in English

Newspapers from Australia