前端之家收集整理的这篇文章主要介绍了
如何使用Ruby加密文件?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要编写一个加密/解密
文件的简单工具.
我想最好的办法是使用OpenSSL:
生成一个键:
openssl rand -base64 2048 > secret_key
加密文件:
openssl aes-256-cbc -a -e -in file -out file.enc -k secret_key
解密文件:
openssl aes-256-cbc -d -in file.enc -out file -k secret_key
有没有办法在Ruby中实现这个?有更好的方法吗?使用PGP可能吗?
原文链接:https://www.f2er.com/ruby/265892.html