Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

When creating a tar ball, can I also password protect it? 2

Status
Not open for further replies.

stla

IS-IT--Management
Mar 12, 2003
190
DE
I would like to create a tar ball script that is executed as a cron job.

Is it possible that once the tarball is created, I can password protect it?

Best regards
 
Encrypt Me
Code:
% tar cf [i]filename.tar[/i] <my files>
% openssl des3 -salt -in [i]filename.tar[/i] -out [i]filename.tar[/i].des3
Decrypt Me
Code:
% openssl des3 -d -salt -in [i]filename.tar[/i].des3 -out [i]filename.tar[/i]
% tar xf [i]filename.tar[/i]

M. Brooks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top