openssl_csr_get_public_key
(PHP 5 >= 5.2.0, PHP 7)
openssl_csr_get_public_key — Returns the public key of a CSR
説明
openssl_csr_get_public_key() extracts the public key
from csr and prepares it for use by other functions.
返り値
Returns a positive key resource identifier on success, or FALSE on error.
例
例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'];
?>
参考
- openssl_csr_get_subject() - Returns the subject of a CSR
- openssl_csr_new() - CSR を作成する
- openssl_pkey_get_details() - キーの詳細の配列を返す
- openssl_pkey_export_to_file() - エクスポート可能な形式で、キーをファイルに取得する
- openssl_pkey_export() - エクスポート可能な形式で、キーを文字列に取得する