0

I'd like to start using "vim -X" to store encrypted text files. This is a nice introduction on how to do it:

http://www.techrepublic.com/blog/security/vim-offers-strong-file-encryption-with-blowfish/4870

However, how do I tell for sure what encryption algorithm is being used, and how do a change it to blowfish if it's the older, less secure algorithm?

Peter Groves
  • 275
  • 1
  • 2
  • 6

1 Answers1

1

You can check the current encryption method by checking the cryptmethod variable, like so:

:set cryptmethod
  cryptmethod=zip

Vim only supports zip and blowfish at the moment, where Blowfish is the stronger method.

mgorven
  • 30,615
  • 7
  • 79
  • 122