从 cer 文件中提取公钥以在 nusoap 中使用

发布于 2024-07-10 17:58:39 字数 105 浏览 11 评论 0原文

有人可以告诉我如何从 .cer 文件中提取 .pem 格式的公共 keu 吗? 我正在尝试使用 nusoap 通过 https 配置 Web 服务。

谢了, 急诊科

Can someone tell me how can I extract a public keu in .pem format from a .cer file ?
I'm trying to configure webservice over https with nusoap.

Tks,
ED

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

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

发布评论

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

评论(2

被你宠の有点坏 2024-07-17 17:58:39
openssl x509 -inform der -in <certificate> -noout -pubkey

应该打印出公钥。

openssl x509 -inform der -in <certificate> -noout -pubkey

Should print out the public key.

迟到的我 2024-07-17 17:58:39

每当我需要转换证书格式时,我都喜欢跳上 Linux shell 并使用 openssl CLI。

查看此页面了解常见的 openssl 命令。 您将对标题为“将 DER (.crt .cer .der) 转换为 PEM”的内容最感兴趣。

Any time I need to convert certificate formats I like to hop on my Linux shell and use the openssl CLI.

Take a look at this page for common openssl commands. You will be most interested in the one titled "Convert DER (.crt .cer .der) to PEM".

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