我有一个bash文件,我希望以加密方式执行它。
通过使用这个命令,我加密了我的文件。现在我想运行它。我怎么能这么做?
openssl des3 -salt -in file.txt -out file.txt.enc -pass pass:password发布于 2016-08-16 05:35:53
使用shc脚本编译器对其进行加密(Blowfish),请参见此source=tuicool
http://www.linuxsecurity.com/content/view/117920/171
http://www.datsi.fi.upm.es/~frosal/
如果您想使用DES3,可以在以下内容中尝试soFan的答案:
编写包装器#!/bin/sh openssl enc -d -DES3 ... -a -in script-enc | sh -
https://stackoverflow.com/questions/38967178
复制相似问题