Created
September 21, 2018 11:32
-
-
Save DeastinY/396472eb67e9890b6056ad121139ba9b to your computer and use it in GitHub Desktop.
This file contains 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
➜ ~ echo "test test" >> somefile.txt | |
➜ ~ gpg --symmetric somefile.txt | |
➜ ~ cat somefile.txt | |
test test | |
➜ ~ cat somefile.txt.gpg | |
���6,�f��I�� ؞�i���݇h��͡�~ �Nv�-�&��Z'�i�r57�"�˜vp�� ���\��jzuZT�8�_|➜ ~ rm somefile.txt | |
➜ ~ gpg -d somefile.txt.gpg | |
gpg: AES encrypted data | |
gpg: encrypted with 1 passphrase | |
test test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment