如何使用 PEM 私钥解密加密文件?

发布于 2024-08-26 21:45:37 字数 206 浏览 10 评论 0原文

我的文件要么使用公钥和 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

日裸衫吸 2024-09-02 21:45:37

PEM 不只是一种 Base64 编码(包含在 --- BEGIN/END CERTIFICATE --- 行中)吗?尝试 Mime::Base64 模块,或者查看 的源代码Convert::PEM 模块。

Isn't PEM just a base64 encoding (wrapped in --- BEGIN/END CERTIFICATE --- lines)? Try the Mime::Base64 module, or have a look at the source to the Convert::PEM module.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文