Last active
January 24, 2019 13:23
-
-
Save dhbradshaw/c5546be097e806ae2b7c11da2f612559 to your computer and use it in GitHub Desktop.
gnu encryption
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
# Encrypt file | |
gpg -c --cipher-algo AES256 private-file.txt | |
# Decrypt it | |
gpg private-file.txt.gpg | |
# !!Don't forget the passphrase!! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment