tar加密解密

  • 加密压缩
# 将当前目录下的files文件夹打包压缩,密码为password
tar -czvf - files | openssl des3 -salt -k password -out files.tar.gz
  • 解密解缩
# 将当前目录下的files.tar.gz进行解密解压拆包
openssl des3 -d -k password -salt -in files.tar.gz | tar xzvf -

欢迎指出任何有错误或不够清晰的表达,可以在下面评论区评论。

×

喜欢就点赞,疼爱就打赏

//