I’d like to give my users some private network storage (private from me, ie. something encrypted at rest with keys that root cannot obtain).
Do you have any recommendations?
Ideally, it should be something where files are only decrypted on the client, but server-side decryption would be acceptable too as long as the server doesn’t save the decryption keys to disk.
Before someone suggests that, I know I could just put lucks-encrypted disk images on the NAS, but I’d like the whole thing to have decent performance (the idea is to allow people to store their photos/videos, so some may have several GB of files).
edit:
Thanks everyone for your comments!
TLDR: cryfs
Turns out I was looking at the problem from the wrong point of view: I was looking at sftpgo and wondering what I could do on the server side, but you made me realise this is really a client issue (and a solved one at that).
Here’s a few notes after investigating the matter:
- The use case is exactly the same as using client-side encryption with cloud storage (dropbox and those other things we self-hoster never use).
- As an admin I don’t have to do anything to support this use case, except maybe guiding my users in choosing what solution to adopt.
- Most of the solutions (possibly all except cryfs?) encrypt file names and contents, leaking the directory structure and file size (meaning I could pretty much guess if they are storing their photos or… unsavory movies).
- F-droid has an Android app (called DroidFS) that support gocryptfs and cryfs
I’ll recommend my users try cryfs before any other solution. Others that may be worth it looking at (in order): gocryptfs, cryptomator, securefs.
I’ll recommend my users to avoid cryptomator if possible, despite its popularity: it’s one of those commecrial open source projects with arbitrary limitations (5 seats, whatever that means) and may have nag screens or require people to migrate to some fork in the future.
ecryptfs is to be avoid at all costs, as it seems unamaintaned.


OP, test the performance of LUKS image, VeraCrypt (if entertaining that) and Cryptomator and tell us how they perform! 😁
You could run a small set of fio runs to test sequential, random and parallel perf.