Vim has an option to encrypt files that it creates.
If you want to try it do the following
-
Make sure you have
vim
installed. In Debianapt install vim
. Some distros come with original vi or vim-tiny… they do not have the encryption option -
vim -x <filename>
You will be asked “Enter encryption key:”
Put in a suitable key, then create your file. Exit vim in the usual way:wq
orZZ
-
Check your file is encrypted… eg
cat <filename>
it will look like a binary file if it is encrypted. -
To access your encryped file do
vim <filename>
. You will be asked to enter the key, then the file will appear unencrypted in your window. You can edit and resave if required. The unencrypted file only ever appears in your vim window.
I use it for a few things, including my file of passwords. I can send an encrypted file to my Android tablet and use vim in Termux to view it.
Want to read some more?
Using encrypted documents with vim - Linux Audit