php 如何获取 公钥钥格式为cer,私钥格式为pfx的证书

发布于 2022-09-07 00:01:31 字数 678 浏览 16 评论 0

1.对接一个接口,对方的接口是java写的,我是php,对方给了两个文件,一个公钥.cer,一个私钥.pfx,
我用openssl_pkcs12_read() 读取pfx进行签名.

openssl_pkcs12_read(file_get_contents('./private.pfx'), $certs, "sft12#");
if(!$certs) exit(0);
openssl_sign($data, $signature, $certs['pkey']);
$signature = base64_encode($signature);

该怎么读取.cer进行验签呢

$cer_key = file_get_contents('./public.cer'); 
 $cer = openssl_x509_read($cer_key);

openssl_x509_read这个函数会报错误
openssl_x509_read(): supplied parameter cannot be coerced into an X509 certificate!

用openssl_x509_read 应该是不对的,那应该怎么做呢.还是说用openssl命令转换成pem呢! 希望得到指导
x509 -inform der -in test.cer -out test.pem

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

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

发布评论

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

评论(1

一向肩并 2022-09-14 00:01:31

pfx后缀证书(私钥+公钥)、cer证书(仅有公钥)
openssl_pkcs12_read(file_get_contents('./private.pfx'), $certs, "sft12#");

print_r([
$certs['cert'],
$certs['pkey']
]);

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