Last active
November 13, 2020 01:27
-
-
Save hddananjaya/0c492235b45aace2ba8b0b6724d0de7a to your computer and use it in GitHub Desktop.
Privacy with GNU Privacy Guard.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gpg2 --symmetric --cipher-algo AES256 -o enc-secrets.zip ./secrets.zip | |
# remember the password. Never save digitally - | |
rm -rf ~/.gnupg/ | |
shred --remove secrets.zip | |
# upload to a cloud service - | |
shred --remove enc-secrets.zip |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment