Created
March 8, 2015 12:04
-
-
Save fdelbos/230c8829b263fc95430c to your computer and use it in GitHub Desktop.
encrypt a file
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
# encrypt | |
openssl enc -aes-256-cbc -in myfile.tar -out myfile.tar.enc | |
# decrypt | |
openssl enc -aes-256-cbc -d -in myfile.tar.enc -out myfile.tar |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment