TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: How do you encrypt your personal files / documents?

7 pointsby zabanaalmost 8 years ago
I keep a personal journal which I store in a hidden folder to keep it private (ie away from non-advanced linux users) but I would like to be able to actually encrypt them so I&#x27;m the only one to have access to them in future.<p>What do you usually use for such purpose ? As I mentioned in the paragraph above, I&#x27;m on Linux.<p>Thanks in advance !

6 comments

mcgrath_shalmost 8 years ago
I use Cryptomator. <a href="https:&#x2F;&#x2F;cryptomator.org" rel="nofollow">https:&#x2F;&#x2F;cryptomator.org</a><p>I&#x27;m not sure of the program&#x27;s technical specs, but it is multi-platform, available on mobile, and is easy to use. I am able to have a shared set of secured documents with various non-technical family members. I&#x27;m not overly worried about the Goverment having my files and I <i>feel</i> it is good enough to keep Dropbox and other hypothetical 3rd parties from my most sensitive documents.
atmosxalmost 8 years ago
I encrypt lots of things. I use the following: To encrypt directories cryptsetup and encfs on linux, dmg on mac, geli on freebsd and git-crypt with private bitbucket repos for docs that I&#x27;d like to have a history log (commits).<p>I think that in your case, you could take a look at git-crypt, but make sure you understand <i>what</i> is encrypted and <i>what</i> is not. Also make sure you don&#x27;t <i>push</i> before <i>git-crypt lock</i>. A bash prompt changing colours might be handy.
dgrandaalmost 8 years ago
With GPG&#x27;s symmetric encryption ($ gpg -c &lt;filename&gt;) you just need a passphrase (no keys involved)
CyberCatMeowalmost 8 years ago
On Linux, you can encrypt your drives using LUKS and cryptsetup. If you want to encrypt single files, you can use gpg2 (with a password, or with a keyfile)
muzuqalmost 8 years ago
I personally use DiskCryptor, but I am not super up-to-date on the best programs for encryption&#x2F;decryption.<p>DiskCryptor does the job for me. Easy to use, open source.
评论 #14969426 未加载
miguelrochefortalmost 8 years ago
What do people encrypt?