Home
Head's Up: I'm in the middle of upgrading my site. Most things are in place, but there are something missing and/or broken including image alt text. Please bear with me while I'm getting things fixed.

Encrypt And Decrypt Files On A Mac With GPG

To encrypt a file, use :

bash
/usr/local/bin/gpg --armor --encrypt --yes -r self@localhost.localdomain {FILE_PATH}

To decrypt a file use :

bash
/usr/local/bin/gpg --decrypt {FILE_PATH}

_ NOTE : I'm not sure if gpg is installed by default or if it's something from homebrew _