(PHP 4 >= 4.2.0, PHP 5, PHP 7, PHP 8)
openssl_csr_export_to_file — 将 CSR 导出到文件
$csr
, string $output_filename
, bool $no_text
= true
): bool
openssl_csr_export_to_file() 获取由 csr
表示的证书签名请求,并将其以 PEM 格式保存到名为 output_filename
的文件中。
版本 | 说明 |
---|---|
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');
// 除了主题,CSR 还包含与私钥相对应的公钥
openssl_csr_export_to_file($csr, 'example-csr.pem');
?>