如何使用 PEM 私钥解密加密文件?
我的文件要么使用公钥和 Blowfish 算法加密,要么使用公钥和 AES-256 算法加密。
我希望编写一个 Perl 脚本,该脚本能够使用私钥(我确实拥有)来解密文件。
公钥和私钥文件都是 PEM 格式,虽然我可以找到读取 PEM 文件的方法以及使用密钥解密数据的方法,但我还没有找到从 PEM -> 进行解密的方法。钥匙。
有什么建议吗?
I have files which have either been encrypted with a public key and the Blowfish algorithm, or a public key and the AES-256 algorithm.
I'm looking to put together a Perl script that would be able to use the private keys (which I do have) to decrypt the files.
The public and private key files are all in PEM format, and while I can find ways of reading the PEM files, and ways of decrypting data with a key, I haven't yet found a way of going from PEM -> key.
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
PEM 不只是一种 Base64 编码(包含在
--- BEGIN/END CERTIFICATE ---
行中)吗?尝试Mime::Base64
模块,或者查看的源代码Convert::PEM
模块。Isn't PEM just a base64 encoding (wrapped in
--- BEGIN/END CERTIFICATE ---
lines)? Try theMime::Base64
module, or have a look at the source to theConvert::PEM
module.