View Single Post
Old 11th September 2018
shep shep is offline
Real Name: Scott
Arp Constable
 
Join Date: May 2008
Location: Dry and Dusty
Posts: 1,503
Default

Just in F/U this
Code:
tar -czf - * | openssl enc -e -aes256 -out /mnt/secured.tar.gz
worked without problems on an amd64 system.

extraction

Code:
openssl enc -d -aes256 -in /mnt/secured.tar.gz -out /home/user/unsecured.tar.gz
Then tar xvzf unsecured.tar.gz

Modified from https://www.tecmint.com/encrypt-decr...openssl-linux/

Last edited by shep; 11th September 2018 at 06:50 PM.
Reply With Quote