EncFS: an Encrypted Filesystem for FUSE.
Go to file
2018-02-09 08:07:05 +01:00
ci spread CI work over targets 2017-08-25 23:16:46 -07:00
cmake Squashed 'vendor/github.com/google/benchmark/' content from commit 163ce4af 2017-08-06 22:36:13 -04:00
encfs Correct a int/off_t buffer overflow in getSize() (#468) 2018-02-09 08:07:05 +01:00
integration Add a new option --reversewrite 2017-10-02 19:02:55 +02:00
intl 1.x: update gettext, replace autosprintf with boost::format 2013-11-13 06:45:46 +00:00
po Update fr.po spelling 2017-10-04 10:05:21 +02:00
test update ci builds 2017-08-07 19:58:03 -04:00
vendor Add "gtest" from "https://github.com/google/googletest.git@release-1.8.0" 2017-08-06 22:36:28 -04:00
.clang-format Squashed 'vendor/github.com/google/benchmark/' content from commit 163ce4af 2017-08-06 22:36:13 -04:00
.gitignore Squashed 'vendor/github.com/google/googletest/' content from commit a3ac2d7f 2017-08-06 22:36:28 -04:00
.travis.yml Make Travis use last stable Xcode 2017-10-10 23:22:10 +02:00
AUTHORS Squashed 'vendor/github.com/google/benchmark/' content from commit 163ce4af 2017-08-06 22:36:13 -04:00
build.sh skip install for tests and other vendored subdirs 2017-10-08 16:07:53 -07:00
ChangeLog Update ChangeLog for v1.9.4 release (#464) 2018-01-28 22:07:41 +01:00
CMakeLists.txt Fix encfs build with BUILD_SHARED_LIBS=1 (#463) 2018-01-28 21:23:23 +01:00
config.h.cmake replace most compile-time platform checks with build-time checks 2017-08-06 18:10:52 -07:00
COPYING add license text for included sources 2016-04-24 23:15:43 -07:00
COPYING.GPL apply license change 2012-10-22 05:30:55 +00:00
COPYING.LGPL apply license change 2012-10-22 05:30:55 +00:00
create-dev-pkg.sh add LIB_INSTALL_DIR override, fixes #213 2016-09-15 16:34:03 -07:00
DESIGN.md Fix pod links in DESIGN.md 2015-02-27 21:10:12 -08:00
devmode switch to osx_image xcode8.3 2017-08-08 23:34:32 -04:00
INSTALL.md Update test instructions 2017-10-11 08:22:57 +02:00
integration.sh Add current path to perl integration tests 2017-08-10 20:49:39 +02:00
package-source.sh Add package-source.sh helper 2018-01-28 15:36:41 +01:00
PERFORMANCE.md Put benchmark results into PERFORMANCE.md 2014-12-08 19:21:33 +01:00
README-NLS remove reference to old autoconf script 2015-06-17 20:47:56 -07:00
README.md Update README.md 2017-09-17 15:36:30 +01:00

EncFS - an Encrypted Filesystem

Build Status

  • Travis: Travis CI

About

EncFS provides an encrypted filesystem in user-space. It runs in userspace, using the FUSE library for the filesystem interface. EncFS is open source software, licensed under the LGPL.

EncFS is now over 10 years old (first release in 2003). It was written because older NFS and kernel-based encrypted filesystems such as CFS had not kept pace with Linux development. When FUSE became available, I wrote a CFS replacement for my own use and released the first version to Open Source in 2003.

EncFS encrypts individual files, by translating all requests for the virtual EncFS filesystem into the equivalent encrypted operations on the raw filesystem.

For more info, see:

Status

Over the last 10 years, a number of good alternatives have grown up. Computing power has increased to the point where it is reasonable to encrypt the entire filesystem of personal computers (and even mobile phones!). On Linux, ecryptfs provides a nice dynamically mountable encrypted home directory, and is well integrated in distributions I use, such as Ubuntu.

EncFS has been dormant for a while. I've started cleaning up in order to try and provide a better base for a version 2, but whether EncFS flowers again depends upon community interest. In order to make it easier for anyone to contribute, it is moving a new home on Github. So if you're interested in EncFS, please dive in!

Unique Features

EncFS has a few features still not found anywhere else (as of Dec 2014) that may be interesting to you:

Reverse mode

encfs --reverse provides an encrypted view of an unencrypted folder. This enables encrypted remote backups using standard tools like rsync.

Fast on classical HDDs

EncFS is typically much faster than ecryptfs for stat()-heavy workloads when the backing device is a classical hard disk. This is because ecryptfs has to to read each file header to determine the file size - EncFS does not. This is one additional seek for each stat. See PERFORMANCE.md for detailed benchmarks on HDD, SSD and ramdisk.

Works on top of network filesystems

EncFS works on network file systems (NFS, CIFS...), while ecryptfs is known to still have problems.

Development

The master branch contains the latest stable codebase. This is where bug fixes and improvments should go.

The dev branch contains experimental work, some of which may be back-ported to the master branch when it is stable. The dev branch is not stable, and there is no guarantee of backward compatibility between changes.

Donations

How about a nice email instead?

FAQ

What settings should I use for Dropbox?

Use standard mode. There have been reports of a pathological interaction of paranoia mode with Dropbox' rename detection. The problem seems to be with External IV chaining, which is not active in standard mode.