与此命令等效的 Ruby OpenSSL 库是什么?
与以下命令等效的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
否。Ruby OpenSSL 没有公开足够的 API 来执行此操作。即使在 C 语言中,我们也必须编写一些自定义代码来完成此任务。
你最好的选择是像这样从 Ruby 运行 openssl,
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,