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

时间:2008-12-18 17:46:57

标签: php web-services certificate nusoap

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

韩国社交协会, ED

2 个答案:

答案 0 :(得分:4)

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

应该打印出公钥。

答案 1 :(得分:2)

任何时候我需要转换证书格式我喜欢跳上我的Linux shell并使用openssl CLI。

查看this page常见的openssl命令。您最感兴趣的是名为“将DER(.crt .cer .der)转换为PEM”的文章。