mirror of
https://github.com/php/doc-ru.git
synced 2025-07-24 09:59:46 +00:00

git-svn-id: https://svn.php.net/repository/phpdoc/ru/trunk@343999 c90b9560-bf6c-de11-be94-00142212c4b1
136 lines
3.8 KiB
XML
136 lines
3.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
||
<!-- $Revision$ -->
|
||
<!-- EN-Revision: b8758b0605e80c4e3610137b7502a6abeea5c69b Maintainer: rjhdby Status: ready -->
|
||
<!-- Reviewed: no -->
|
||
|
||
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.openssl-csr-get-subject">
|
||
<refnamediv>
|
||
<refname>openssl_csr_get_subject</refname>
|
||
<refpurpose>Получить объект CSR</refpurpose>
|
||
</refnamediv>
|
||
|
||
<refsect1 role="description">
|
||
&reftitle.description;
|
||
<methodsynopsis>
|
||
<type>array</type><methodname>openssl_csr_get_subject</methodname>
|
||
<methodparam><type>mixed</type><parameter>csr</parameter></methodparam>
|
||
<methodparam choice="opt"><type>bool</type><parameter>use_shortnames</parameter><initializer>&true;</initializer></methodparam>
|
||
</methodsynopsis>
|
||
<para>
|
||
<function>openssl_csr_get_subject</function> возвращает известную об объекте
|
||
информацию закодированную в <parameter>csr</parameter>, включая
|
||
поля commonName (CN), organizationName (O), countryName (C) и т.д.
|
||
</para>
|
||
</refsect1>
|
||
|
||
<refsect1 role="parameters">
|
||
&reftitle.parameters;
|
||
<para>
|
||
<variablelist>
|
||
&openssl.param.csr;
|
||
<varlistentry>
|
||
<term><parameter>use_shortnames</parameter></term>
|
||
<listitem>
|
||
<para>
|
||
<parameter>shortnames</parameter> определяет, как данные индексируются в ,
|
||
если <parameter>shortnames</parameter> задан как &true; (по умолчанию),
|
||
то поля будут индексированы именами в коротком формате, в противном случае
|
||
будут использованы длинные имена. Например CN является коротким именем для
|
||
commonName.
|
||
</para>
|
||
</listitem>
|
||
</varlistentry>
|
||
</variablelist>
|
||
</para>
|
||
</refsect1>
|
||
|
||
<refsect1 role="returnvalues">
|
||
&reftitle.returnvalues;
|
||
<para>
|
||
&return.success;
|
||
</para>
|
||
</refsect1>
|
||
|
||
<refsect1 role="examples">
|
||
&reftitle.examples;
|
||
<para>
|
||
<example>
|
||
<title>Пример использования openssl_csr_get_subject()</title>
|
||
<programlisting role="php">
|
||
<![CDATA[
|
||
<?php
|
||
$subject = array(
|
||
"countryName" => "CA",
|
||
"stateOrProvinceName" => "Alberta",
|
||
"localityName" => "Calgary",
|
||
"organizationName" => "XYZ Widgets Inc",
|
||
"organizationalUnitName" => "PHP Documentation Team",
|
||
"commonName" => "Wez Furlong",
|
||
"emailAddress" => "wez@example.com",
|
||
);
|
||
$private_key = openssl_pkey_new(array(
|
||
"private_key_bits" => 2048,
|
||
"private_key_type" => OPENSSL_KEYTYPE_RSA,
|
||
));
|
||
$configargs = array(
|
||
'digest_alg' => 'sha512WithRSAEncryption'
|
||
);
|
||
$csr = openssl_csr_new($subject, $privkey, $configargs);
|
||
print_r(openssl_csr_get_subject($csr));
|
||
?>
|
||
]]>
|
||
</programlisting>
|
||
&example.outputs.similar;
|
||
<screen>
|
||
<![CDATA[
|
||
Array
|
||
(
|
||
[C] => CA
|
||
[ST] => Alberta
|
||
[L] => Calgary
|
||
[O] => XYZ Widgets Inc
|
||
[OU] => PHP Documentation Team
|
||
[CN] => Wez Furlong
|
||
[emailAddress] => wez@example.com
|
||
)
|
||
]]>
|
||
</screen>
|
||
|
||
</example>
|
||
</para>
|
||
</refsect1>
|
||
|
||
<refsect1 role="seealso">
|
||
&reftitle.seealso;
|
||
<para>
|
||
<simplelist>
|
||
<member><function>openssl_csr_new</function></member>
|
||
<member><function>openssl_csr_get_public_key</function></member>
|
||
<member><function>openssl_x509_parse</function></member>
|
||
</simplelist>
|
||
</para>
|
||
</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
|
||
-->
|