Files
php-doc-ru/reference/openssl/functions/openssl-pkcs12-export-to-file.xml
2024-05-22 11:47:11 +03:00

148 lines
5.2 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 5bc68add3da3cd18c40f851e944b15095d3a26aa Maintainer: rjhdby Status: ready -->
<!-- Reviewed: no -->
<refentry xml:id="function.openssl-pkcs12-export-to-file" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
<refname>openssl_pkcs12_export_to_file</refname>
<refpurpose>Экспортирует в совместимый с <acronym>PKCS</acronym>#12 файл хранилища сертификатов</refpurpose>
</refnamediv>
<refsect1 role="description">
&reftitle.description;
<methodsynopsis>
<type>bool</type><methodname>openssl_pkcs12_export_to_file</methodname>
<methodparam><type class="union"><type>OpenSSLCertificate</type><type>string</type></type><parameter>certificate</parameter></methodparam>
<methodparam><type>string</type><parameter>output_filename</parameter></methodparam>
<methodparam><modifier role="attribute">#[\SensitiveParameter]</modifier><type class="union"><type>OpenSSLAsymmetricKey</type><type>OpenSSLCertificate</type><type>array</type><type>string</type></type><parameter>private_key</parameter></methodparam>
<methodparam><modifier role="attribute">#[\SensitiveParameter]</modifier><type>string</type><parameter>passphrase</parameter></methodparam>
<methodparam choice="opt"><type>array</type><parameter>options</parameter><initializer>[]</initializer></methodparam>
</methodsynopsis>
<para>
<function>openssl_pkcs12_export_to_file</function> сохраняет
<parameter>certificate</parameter> в файл
<parameter>output_filename</parameter> в формате <acronym>PKCS</acronym>#12.
</para>
</refsect1>
<refsect1 role="parameters">
&reftitle.parameters;
<para>
<variablelist>
&openssl.param.x509;
<varlistentry>
<term><parameter>output_filename</parameter></term>
<listitem>
<para>
Путь до файла.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>private_key</parameter></term>
<listitem>
<para>
Закрытый компонент ключа файла <acronym>PKCS</acronym>#12.
Допустимые значения смотрите <link linkend="openssl.certparams">Параметры закрытого/открытого ключа</link>.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>passphrase</parameter></term>
<listitem>
<para>
Пароль для разблокировки файла <acronym>PKCS</acronym>#12.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>options</parameter></term>
<listitem>
<para>
Массив опций. Не описанные здесь ключи будут проигнорированы.
<informaltable>
<tgroup cols="2">
<thead>
<row>
<entry>Ключ</entry>
<entry>&Description;</entry>
</row>
</thead>
<tbody>
<row>
<entry><literal>"extracerts"</literal></entry>
<entry>массив дополнительных сертификатов или один сертификат для включения в файл <acronym>PKCS</acronym>#12.</entry>
</row>
<row>
<entry><literal>"friendly_name"</literal></entry>
<entry>строка для использования сертификатом и ключом</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</para>
</listitem>
</varlistentry>
</variablelist>
</para>
</refsect1>
<refsect1 role="returnvalues">
&reftitle.returnvalues;
<para>
&return.success;
</para>
</refsect1>
<refsect1 role="changelog">
&reftitle.changelog;
<informaltable>
<tgroup cols="2">
<thead>
<row>
<entry>&Version;</entry>
<entry>&Description;</entry>
</row>
</thead>
<tbody>
<row>
<entry>8.0.0</entry>
<entry>
Параметр <parameter>certificate</parameter> теперь принимает экземпляр <classname>OpenSSLCertificate</classname>;
ранее принимался ресурс (&resource;) типа <literal>OpenSSL X.509 CSR</literal>.
</entry>
</row>
<row>
<entry>8.0.0</entry>
<entry>
Параметр <parameter>private_key</parameter> теперь принимает экземпляр <classname>OpenSSLAsymmetricKey</classname>
или <classname>OpenSSLCertificate</classname>;
раньше принимался ресурс (&resource;) типа <literal>OpenSSL key</literal> или <literal>OpenSSL X.509</literal>.
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->