openssl_csr_export_to_file
(PHP 4 >= 4.2.0, PHP 5, PHP 7, PHP 8)
openssl_csr_export_to_file — CSR をファイルにエクスポートする
説明
openssl_csr_export_to_file(OpenSSLCertificateSigningRequest|string
$csr
, string $output_filename
, bool $no_text
= true
): bool
openssl_csr_export_to_file() は、Certificate
Signing Request csr
を受け取り、
それを output_filename
という名前のファイルに
PEM フォーマットとして保存します。
パラメータ
変更履歴
バージョン | 説明 |
---|---|
8.0.0 |
csr は、
OpenSSLCertificateSigningRequest クラスのインスタンスを受け入れるようになりました。
これより前のバージョンでは、
OpenSSL X.509 CSR 型のリソースを受け入れていました。
|
例
例1 openssl_csr_export_to_file() の例
<?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' => 'sha384') );
openssl_pkey_export_to_file($private_key, 'example-priv.key');
// Along with the subject, the CSR contains the public key corresponding to the private key
openssl_csr_export_to_file($csr, 'example-csr.pem');
?>
参考
- openssl_csr_export() - CSR を文字列としてエクスポートする
- openssl_csr_new() - CSR を作成する
- openssl_csr_sign() - CSR に他の証明書(あるいは自分自身)で署名して証明書を作成する
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google