Encrypt files in unix
As my memory sucks I have an encrypted file that stores passwords. Of course I need a secure way to do that.. what I do is this:
To encrypt:
openssl des3 -salt -in passwords -out passwords.crypt
To decrypt:
openssl des3 -d -salt -in passwords.crypt -out passwords
UPDATE:
I just realized that VIM has a built in way to encrypt and decrypt files that works great.. You must use the -x option
vim -x [filename]