Article Image
Article Image
read

The other day, I discovered that vim has an “encryption” mode. In this mode, your file is encrypted whenever it is written to disk, and decrypted whenever it’s read back (this also applies to any temporary swap files).

I used to use the gnupg plugin for this, but it’s pretty tedious to have to type a long passphrase every time you want to edit a file, and it’s overkill for most things. The only scenario I really need to worry about is my laptop getting stolen1, which means an attacker is not going to be seriously interested in trying to decrypt my stuff.

To use encryption mode, just type :X<enter> from normal mode, when editing a document, and vim will prompt you for a password. Thereafter, you will need that same password every time you edit that file.

It’s quick and easy, but there is one caveat - by default, the encryption that vim uses is very weak. Out of the box, it uses the same encryption as PkZip, which really doesn’t cut it, even for casual secrets.

But, it’s very easy to configure vim to use Blowfish encryption, all you need to do is open up your .vimrc file and add this line;

set cm=blowfish2

Any files you encrypt after this will be protected by the Blowfish cipher, which is more than enough for casual use.


  1. Yes, I use full-disk encryption, but I believe in defence in depth

Blog Logo

David Salgado


Published

Image

Ronin on Rails

Give a man a fish and he’ll eat for a day.
Give a fish a man and he’ll eat for weeks.

Back to Overview