uTools-Manuals/docs/php/mcrypt_get_block_size.html
2019-04-28 19:00:34 +08:00

121 lines
5.3 KiB
HTML
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.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>获得加密算法的分组大小</title>
</head>
<body class="docs"><div id="layout">
<div id="layout-content"><div id="function.mcrypt-get-block-size" class="refentry">
<div class="refnamediv">
<h1 class="refname">mcrypt_get_block_size</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_block_size</span> &mdash; <span class="dc-title">获得加密算法的分组大小</span></p>
</div>
<div id="function.mcrypt-get-block-size-refsynopsisdiv">
<div class="warning"><strong class="warning">Warning</strong><p class="simpara">This function has been
<em class="emphasis">DEPRECATED</em> as of PHP 7.1.0. Relying on this function
is highly discouraged.</p></div>
</div>
<div class="refsect1 description" id="refsect1-function.mcrypt-get-block-size-description">
<h3 class="title">说明</h3>
<div class="methodsynopsis dc-description">
<span class="methodname"><strong>mcrypt_get_block_size</strong></span>
( <span class="methodparam"><span class="type">int</span> <code class="parameter">$cipher</code></span>
) : <span class="type">int</span></div>
<div class="methodsynopsis dc-description">
<span class="methodname"><strong>mcrypt_get_block_size</strong></span>
( <span class="methodparam"><span class="type">string</span> <code class="parameter">$cipher</code></span>
, <span class="methodparam"><span class="type">string</span> <code class="parameter">$mode</code></span>
) : <span class="type">int</span></div>
<p class="para rdfs-comment">
第一个原型针对 libmcrypt 2.2.x
第二个原型针对 libmcrypt 2.4.x 或 2.5.x。
</p>
<p class="para">
<span class="function"><strong>mcrypt_get_block_size()</strong></span> 用来获取
<code class="parameter">cipher</code> (其中包括了加密模式)
加密算法分组大小。
</p>
<p class="para">
<span class="function"><a href="mcrypt_enc_get_block_size.html" class="function">mcrypt_enc_get_block_size()</a></span> 函数更加有用,
因为它可以使用 <span class="function"><a href="mcrypt_module_open.html" class="function">mcrypt_module_open()</a></span>
函数所返回的资源。
</p>
</div>
<div class="refsect1 parameters" id="refsect1-function.mcrypt-get-block-size-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>
<dt>
<code class="parameter">mode</code></dt>
<dd>
<p class="para"><strong><code>MCRYPT_MODE_modename</code></strong> 常量中的一个,或以下字符串中的一个:&quot;ecb&quot;&quot;cbc&quot;&quot;cfb&quot;&quot;ofb&quot;&quot;nofb&quot;&quot;stream&quot;</p>
</dd>
</dl>
</p>
</div>
<div class="refsect1 returnvalues" id="refsect1-function.mcrypt-get-block-size-returnvalues">
<h3 class="title">返回值</h3>
<p class="para">
返回以字节为单位的此算法的分组数据大小。 或者在失败时返回 <strong><code>FALSE</code></strong>
</p>
</div>
<div class="refsect1 examples" id="refsect1-function.mcrypt-get-block-size-examples">
<h3 class="title">范例</h3>
<p class="para">
<div class="example" id="example-908">
<p><strong>Example #1 <span class="function"><strong>mcrypt_get_block_size()</strong></span> 例程</strong></p>
<div class="example-contents"><p>
在 libmcrypt 2.4.x 和 2.5.x 下
如何使用本函数。
</p></div>
<div class="example-contents">
<div class="phpcode"><pre><span style="color: #000000">
<span style="color: #0000BB">&lt;?php<br /><br /></span><span style="color: #007700">echo&nbsp;</span><span style="color: #0000BB">mcrypt_get_block_size</span><span style="color: #007700">(</span><span style="color: #DD0000">'tripledes'</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">'ecb'</span><span style="color: #007700">);&nbsp;</span><span style="color: #FF8000">//&nbsp;8<br /><br /></span><span style="color: #0000BB">?&gt;</span>
</span>
</pre></div>
</div>
</div>
</p>
</div>
<div class="refsect1 seealso" id="refsect1-function.mcrypt-get-block-size-seealso">
<h3 class="title">参见</h3>
<p class="para">
<ul class="simplelist">
<li class="member"><span class="function"><a href="mcrypt_get_key_size.html" class="function" rel="rdfs-seeAlso">mcrypt_get_key_size()</a> - 获取指定加密算法的密钥大小</span></li>
<li class="member"><span class="function"><a href="mcrypt_enc_get_block_size.html" class="function" rel="rdfs-seeAlso">mcrypt_enc_get_block_size()</a> - 返回打开的算法的分组大小</span></li>
<li class="member"><span class="function"><a href="mcrypt_encrypt.html" class="function" rel="rdfs-seeAlso">mcrypt_encrypt()</a> - 使用给定参数加密明文</span></li>
</ul>
</p>
</div>
</div></div></div></body></html>