#Encrypt
openssl aes-256-cbc -in $TARGZ_BASENAME -out $TARGZ_BASENAME.enc
#Decrypt
openssl aes-256-cbc -d -in $TARGZ_BASENAME.enc -out $TARGZ_BASENAME
Reference:
https://gist.github.com/fcoury/4890d7831d7e83ba1782
This Blog is primarily intended to be a notes-to-self kind of thing. The information contained here is guaranteed to range anywhere from correct to wildly wrong. Use at your own risk. YMMV.
#Encrypt
openssl aes-256-cbc -in $TARGZ_BASENAME -out $TARGZ_BASENAME.enc
#Decrypt
openssl aes-256-cbc -d -in $TARGZ_BASENAME.enc -out $TARGZ_BASENAME
Reference:
https://gist.github.com/fcoury/4890d7831d7e83ba1782