gocryptfs
See the gocryptfs project home for further introduction of its features, benchmarks, etc. See Data-at-rest encryption#Comparison table for an overview of alternative methods and EncFS for the direct alternative.
From gocryptfs:
- gocryptfs uses file-based encryption that is implemented as a mountable FUSE filesystem. Each file in gocryptfs is stored one corresponding encrypted file on the hard disk.
- The highlights are: Scrypt password hashing, GCM encryption for all file contents, EME wide-block encryption for file names with a per-directory IV.
Installation
Install gocryptfs or gocryptfs-gitAUR.
As a FUSE filesystem, gocryptfs is fully configurable by the user and stores its configuration files in the user's directory paths.
Usage
See gocryptfs(1) and its examples first.
- To achieve its design goal of authenticated encryption, gocryptfs implements a AES-EME encryption mode (for filenames, the content is encrypted using standard libraries). While the EME mode is not widely used/audited yet, gocryptfs encryption modes bring integrity protection for the data.
- See the project's tracking bug report regarding findings of the first security audit for more information.
Example using reverse mode
A major application for file-based encryption methods are encrypted backups. FUSE-based filesystems are flexible for this, since they allow a wide array of backup destinations using standard tools. For example, a gocryptfs-encrypted FUSE mount point can be easily created directly on a Samba/NFS share or Dropbox location, synchronized to a remote host with rsync, or just be manually copied to a remote backup storage.
The reverse mode of gocryptfs is particularly useful for creating encrypted backups, since it requires virtually no extra storage capacity on the machine to back up.
The following shows an example of user archie creating a backup of :
First, archie initializes the configuration for the home directory:
$ gocryptfs -init -reverse /home/archie
Choose a password for protecting your files. Password: ...
Second, an empty directory for the encrypted view of the home directory is created and mounted:
Third, archie creates a backup of the encrypted directory, a simple local copy for this example:
$ cp -a /tmp/crypt /tmp/backup
and done.
The encrypted directory can stay mounted for the user session, or be unmounted manually:
$ fusermount -u /tmp/crypt $ rmdir /tmp/crypt
To restore from the encrypted backup, a plain-text view is mounted using gocryptfs's normal mode:
$ mkdir /tmp/''restore'' $ gocryptfs /tmp/''backup''/ /tmp/''restore'' Password: Decrypting master key ... Filesystem mounted and ready. $
Now the required files can be restored.
GUI wrappers
There are a couple of applications available that provide a graphical user interface for gocryptfs.
gocryptfs-ui
A bash script gocryptfs-ui provides a simple GUI around the gocryptfs command line utility to mount and unmount an encrypted directory. It includes a desktop launcher. Install it from .
cryptor
A / based application providing a GUI to create and mount encrypted directories. It can store configuration files with a list of encrypted directories, has tray-icon support and includes a desktop launcher. Install it from .
See also
- A first security audit of gocryptfs
- RFC 5297 Synthetic Initialization Vector (SIV) Authenticated Encryption Using the Advanced Encryption Standard (AES)
- gocryptfs-ui () is a simple GUI for gocryptfs.
- cryptor () a simple GUI application for gocryptfs.