OpenSSL 函数 业 ,精于勤 荒于嬉.
- OpenSSL 函数 openssl_x509_parse 解析一个X509证书并作为一个数组返回信息
-
发表日期:2021-07-01 08:55:24 | 来源: | 分类:OpenSSL 函数
-
openssl_x509_parse
(PHP 4 >= 4.0.6, PHP 5, PHP 7, PHP 8)
openssl_x509_parse — 解析一个X509证书并作为一个数组返回信息
说明
openssl_x509_parse(mixed$x509cert
, bool$shortnames
=true
): arrayopenssl_x509_parse() 返回提供的
x509cert
证书的信息, 包括主题名称、发行方名称、目的、有效日期等字段。参数
-
x509cert
-
-
shortnames
-
shortnames
控制数据在数组中的索引 - 如果shortnames
为true
(默认) 字段将以短名称的形式被索引, 否则将会使用长名称的形式 - 比如: CN 就是commonName的短名称格式。
返回值
返回的数据的结构是(故意的)还没有文档化,因为它仍然会发生变化。
-
- OpenSSL 函数 openssl_x509_read 解析一个x.509证书并返回一个资源标识符
-
发表日期:2021-07-01 08:55:24 | 来源: | 分类:OpenSSL 函数
-
openssl_x509_read
(PHP 4 >= 4.0.6, PHP 5, PHP 7, PHP 8)
openssl_x509_read — 解析一个x.509证书并返回一个资源标识符
说明
openssl_x509_read(mixed$x509certdata
): resourceopenssl_x509_read() 解析
x509certdata
提供的证书,并返回一个资源标识符。参数
-
x509certdata
-
X509 证书。参见 Key/Certificate parameters 获取可用的值。
返回值
成功,返回一个资源标识符, 或者在失败时返回
false
. -
- OpenSSL 函数 openssl_x509_verify Verifies digital signature of x509 certificate against a public key
-
发表日期:2021-07-01 08:55:24 | 来源: | 分类:OpenSSL 函数
-
示例1
<?php $hostname = "news.php.net"; $ssloptions = array( "capture_peer_cert" => true, "capture_peer_cert_chain" => true, "allow_self_signed"=> false, "CN_match" => $hostname, "verify_peer" => true, "SNI_enabled" => true, "SNI_server_name" => $hostname,); $ctx = stream_context_create( array("ssl" => $ssloptions) ); $result = stream_socket_client("ssl://$hostname:443", $errno, $errstr, 30, STREAM_CLIENT_CONNECT, $ctx); $cont = stream_context_get_params($result); $x509 = $cont["options"]["ssl"]["peer_certificate"]; $certparsed = openssl_x509_parse($x509); foreach($cont["options"]["ssl"]["peer_certificate_chain"] as $chaincert){ $chainparsed = openssl_x509_parse($chaincert); $chain_public_key = openssl_get_publickey($chaincert); $r = openssl_x509_verify($x509, $chain_public_key); if ($r==1) { echo $certparsed['subject']['CN']; echo " was digitally signed by "; echo $chainparsed['subject']['CN']."\n"; } } ?>
- PHP杂项(34)
- PHP基础-李炎恢系列课程(20)
- 中文函数手册(0)
- 错误处理 函数(13)
- OPcache 函数(6)
- PHP 选项/信息 函数(54)
- Zip 函数(10)
- Hash 函数(15)
- OpenSSL 函数(63)
- Date/Time 函数(51)
- 目录函数(9)
- Fileinfo 函数(6)
- iconv 函数(11)
- 文件系统函数(81)
- 多字节字符串 函数(57)
- GD 和图像处理 函数(114)
- 可交换图像信息(5)
- Math 函数(50)
- 程序执行函数(11)
- PCNTL 函数(23)
- JSON 函数(4)
- SPL 函数(15)
- URL 函数(10)
- cURL 函数(32)
- 网络 函数(33)
- FTP 函数(36)
- Session 函数(23)
- PCRE 函数(11)
- PCRE 正则语法(19)
- 数组 函数(81)
- 类/对象 函数(18)
- 函数处理 函数(13)
- 变量处理 函数(37)
- SimpleXML 函数(3)
- 杂项 函数(31)
- 字符串 函数(101)