openssl_pkcs12_export_to_file
openssl_pkcs12_export_to_file
(PHP 5 >= 5.2.2, PHP 7)
openssl_pkcs12_export_to_file - 导出PKCS#12兼容证书存储文件
描述
bool openssl_pkcs12_export_to_file ( mixed $x509 , string $filename , mixed $priv_key , string $pass [, array $args ] )
openssl_pkcs12_export_to_file()
存储x509
到以filename
PKCS#12文件格式命名的文件中。
参数
x509
请参阅密钥/证书参数以获取有效值列表。
filename
输出文件的路径。
priv_key
PKCS#12文件的私钥组件。请参阅公钥/私钥参数以获取有效值列表。
pass
用于解锁PKCS#12文件的加密密码。
args
可选数组,其他键将被忽略。
键 | 描述 |
---|---|
“extracerts” | PKCS#12文件中包含额外证书或单个证书的数组。 |
“友好名称” | 字符串用于提供的证书和密钥 |
返回值
成功时返回TRUE
或失败时返回FALSE
。
← openssl_pbkdf2
openssl_pkcs12_export →