CURL使用SSL证书访问HTTPS
证书格式转换
若服务端要求客户端认证,需要将pfx证书转换成pem格式
openssl pkcs12 -clcerts -nokeys -in cert.pfx -out client.pem #客户端个人证书的公钥
openssl pkcs12 -nocerts -nodes -in cert.pfx -out key.pem #客户端个人证书的私钥
也可以转换为公钥与私钥合二为一的文件
openssl pkcs12 -in cert.pfx -out all.pem -nodes #客户端公钥与私钥,一起存在all.pem中
执行curl命令
(1)使用client.pem
+ key.pem
curl -k --cert client.pem --key key.pem https://www.xxxx.com
(2)使用all.pem
curl -k --cert all.pem https://www.xxxx.com
使用-k
,是不对服务器的证书进行检查,这样就不必关心服务器证书的导出问题。
curl -d '@wxpay_refund.txt' --cacert rootca.pem -k --cert ./apiclient_cert.pem --key apiclient_key.pem https://api.mch.weixin.qq.com/secapi/pay/refund
版权声明:
作者:Joe.Ye
链接:https://www.appblog.cn/index.php/2023/02/25/curl-uses-ssl-certificate-to-access-https/
来源:APP全栈技术分享
文章版权归作者所有,未经允许请勿转载。
THE END
0
二维码
打赏
海报
CURL使用SSL证书访问HTTPS
证书格式转换
若服务端要求客户端认证,需要将pfx证书转换成pem格式
openssl pkcs12 -clcerts -nokeys -in cert.pfx -out client.pem #客户端个人证书的公……
文章目录
关闭
共有 0 条评论