Skip to content

Instantly share code, notes, and snippets.

@jbonney
Created February 18, 2014 10:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save jbonney/9068058 to your computer and use it in GitHub Desktop.
Save jbonney/9068058 to your computer and use it in GitHub Desktop.
#Encryption
openssl enc -in important_backups.tar.gz -aes-256-cbc -e > important_backups_encrypted.tar.gz
# Decryption
openssl enc -in important_backups_encrypted.tar.gz -aes-256-cbc -d > important_backups_decrypted.tar.gz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment