与此命令等效的 Ruby OpenSSL 库是什么?

发布于 2024-08-11 19:15:20 字数 173 浏览 2 评论 0原文

与以下命令等效的 Ruby OpenSSL 库是什么?

openssl pkcs12 -clcerts -nodes -in apns.p12 -out apns.pem

我一直在阅读我能找到的文档,但它的文档很少,而且我对此没有太多运气。

谢谢!

what's the Ruby OpenSSL library equivalent of the following command?

openssl pkcs12 -clcerts -nodes -in apns.p12 -out apns.pem

I've been reading through the documentation that I could find, but it's so sparsely documented and I'm not having much luck with that.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

星軌x 2024-08-18 19:15:20

否。Ruby OpenSSL 没有公开足够的 API 来执行此操作。即使在 C 语言中,我们也必须编写一些自定义代码来完成此任务。

你最好的选择是像这样从 Ruby 运行 openssl,

  system("#{openssl_path}openssl pkcs12 -in #{dir}/#{login}.p12 -out #{dir}/#{login}.cer -clcerts -nokeys -passin pass:#{p12_password}")

No. Ruby OpenSSL doesn't expose enough API to do this. Even in C, we have to write some custom code to accomplish this.

Your best bet is to run openssl from Ruby like this,

  system("#{openssl_path}openssl pkcs12 -in #{dir}/#{login}.p12 -out #{dir}/#{login}.cer -clcerts -nokeys -passin pass:#{p12_password}")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文