略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: openssl_csr_get_public_key

2024-04-25

openssl_csr_get_public_key

(PHP 5 >= 5.2.0, PHP 7, PHP 8)

openssl_csr_get_public_key返回CSR的公钥

说明

openssl_csr_get_public_key(mixed $csr, bool $use_shortnames = true): resource

openssl_csr_get_public_key()csr中提取公钥供其他功能使用。

参数

csr

See CSR parameters for a list of valid values.

use_shortnames
警告

该参数可以省略。

返回值

成功,返回一个私钥标识符,错误则返回FALSE.

范例

示例 #1 openssl_csr_get_public_key() example

<?php
$subject 
= array(
    
"commonName" => "example.com",
);
$private_key openssl_pkey_new(array(
    
"private_key_bits" => 2048,
    
"private_key_type" => OPENSSL_KEYTYPE_RSA,
));
$csr openssl_csr_new($subject$private_key, array('digest_alg' => 'sha256') );
$public_key openssl_csr_get_public_key($csr);
$info openssl_pkey_get_details($public_key);
echo 
$info['key'];
?>

参见

add a noteadd a note

User Contributed Notes 1 note

up
-2
php at siemenroorda dot nl
12 years ago
Function openssl_pkey_get_details can read this resource. Try:

<?php
  print_r
(openssl_pkey_get_details(openssl_csr_get_public_key($csr)));
?>

官方地址:https://www.php.net/manual/en/function.openssl-csr-get-public-key.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3