Ger*_*rre 5 encryption command-line blowfish
我们的应用程序需要使用(例如)Blowfish加密算法来加密/解密文件.我们知道bcrypt可能是一个不错的选择,但不能直接从我们的应用程序调用它(因为它提示关键短语).
哪个是现有的最佳选择?
我们更喜欢Windows工具,不过Linux也会很好.
Mar*_*cin 14
http://www.openssl.org/docs/crypto/blowfish.html 编程接口
http://www.openssl.org/docs/apps/enc.html 命令行界面
例:
openssl enc -base64 -e -bf-cbc -in <infile> -out <outfile> -kfile <passphrase file>
Run Code Online (Sandbox Code Playgroud)
(替换-e与-d解密)