Using Gnupg and openssl for encryption
I have used Gnupg to encrypt my private files, specially those that I upload to the clouds, for a long time. I used to encrypt to self, using my own key, then later moved to symmetric encryption only. The command is easy:

Using Gnupg

To encrypt:

gpg --cipher-algo aes256 --symmetric file.txt

Adding the option --armor to the above will produce an ASCII armoured encrypted file.

To decrypt:

... โŒ˜ [Read more](https://collantes.us/2019/07/30/using-gnupg-and-openssl-for-encryption/)

โค‹ Read More