使用 PHP 从 p12 证书文件中获取信息
Posted
技术标签:
【中文标题】使用 PHP 从 p12 证书文件中获取信息【英文标题】:Get information from p12 certificate file using PHP 【发布时间】:2017-06-12 08:19:31 【问题描述】:我的网页有一个登录表单,它请求 p12 文件以使用证书验证您的身份。
如何使用 php 代码获取 p12 信息?
【问题讨论】:
看这里:php.net/manual/en/function.openssl-pkcs12-read.php 【参考方案1】:我想这会对你有所帮助。
$certs = array();
$pkcs12 = file_get_contents( "pkcs12file.pem" );
openssl_pkcs12_read( $pkcs12, $certs, "" );
print_r( $certs );
文档中有更多内容:PHP.net doc
【讨论】:
以上是关于使用 PHP 从 p12 证书文件中获取信息的主要内容,如果未能解决你的问题,请参考以下文章