<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.mcrypt.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'uk',
  ),
  'this' => 
  array (
    0 => 'function.mcrypt-get-cipher-name.php',
    1 => 'mcrypt_get_cipher_name',
    2 => 'Gets the name of the specified cipher',
  ),
  'up' => 
  array (
    0 => 'ref.mcrypt.php',
    1 => 'Функції Mcrypt',
  ),
  'prev' => 
  array (
    0 => 'function.mcrypt-get-block-size.php',
    1 => 'mcrypt_get_block_size',
  ),
  'next' => 
  array (
    0 => 'function.mcrypt-get-iv-size.php',
    1 => 'mcrypt_get_iv_size',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/mcrypt/functions/mcrypt-get-cipher-name.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.mcrypt-get-cipher-name" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">mcrypt_get_cipher_name</h1>
  <p class="verinfo">(PHP 4, PHP 5, PHP 7 &lt; 7.2.0, PECL mcrypt &gt;= 1.0.0)</p><p class="refpurpose"><span class="refname">mcrypt_get_cipher_name</span> &mdash; <span class="dc-title">Gets the name of the specified cipher</span></p>

 </div>
 <div id="function.mcrypt-get-cipher-name-refsynopsisdiv">
  <div class="warning"><strong class="warning">Увага</strong><p class="simpara">Ця функція
<em>ЗАСТАРІЛА</em>, починаючи з PHP 7.1.0, та
<em>ВИЛУЧЕНА</em> в PHP 7.2.0. Вкрай не рекомендується на неї
покладатися.</p></div>
 </div>
 <div class="refsect1 description" id="refsect1-function.mcrypt-get-cipher-name-description">
  <h3 class="title">Опис</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>mcrypt_get_cipher_name</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$cipher</code></span>): <span class="type"><a href="language.types.string.php" class="type string">string</a></span></div>

  <div class="methodsynopsis dc-description"><span class="methodname"><strong>mcrypt_get_cipher_name</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$cipher</code></span>): <span class="type"><a href="language.types.string.php" class="type string">string</a></span></div>

  <p class="para rdfs-comment">
   <span class="function"><strong>mcrypt_get_cipher_name()</strong></span> is used to get the
   name of the specified cipher.
  </p>
  <p class="para">
   <span class="function"><strong>mcrypt_get_cipher_name()</strong></span> takes the cipher
   number as an argument (libmcrypt 2.2.x) or takes the cipher name
   as an argument (libmcrypt 2.4.x or higher) and returns the name of the cipher
   or <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong>, if the cipher does not exist.
  </p>
 </div>

 <div class="refsect1 parameters" id="refsect1-function.mcrypt-get-cipher-name-parameters">
  <h3 class="title">Параметри</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">cipher</code></dt>
     <dd>
      <p class="para">Одна з констант
<strong><code>MCRYPT_ciphername</code></strong> або назва алгоритму у вигляді
рядка.</p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.mcrypt-get-cipher-name-returnvalues">
  <h3 class="title">Значення, що повертаються</h3>
  <p class="para">
   This function returns the name of the cipher or <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> if the cipher does
   not exist.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-function.mcrypt-get-cipher-name-examples">
  <h3 class="title">Приклади</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Приклад #1 <span class="function"><strong>mcrypt_get_cipher_name()</strong></span> Example</strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br />   $cipher </span><span style="color: #007700">= </span><span style="color: #0000BB">MCRYPT_TripleDES</span><span style="color: #007700">;<br /><br />   echo </span><span style="color: #0000BB">mcrypt_get_cipher_name</span><span style="color: #007700">(</span><span style="color: #0000BB">$cipher</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

    <div class="example-contents"><p>Поданий вище приклад
виведе:</p></div>
    <div class="example-contents screen">
<div class="examplescode"><pre class="examplescode">3DES</pre>
</div>
    </div>
   </div>
  </p>
 </div>

</div><?php manual_footer($setup); ?>