uTools-Manuals/docs/php/openssl_private_decrypt.html
2019-04-08 23:22:26 +08:00

116 lines
4.2 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.openssl-private-decrypt" class="refentry">
<div class="refnamediv">
<h1 class="refname">openssl_private_decrypt</h1>
<p class="verinfo">(PHP 4 &gt;= 4.0.6, PHP 5, PHP 7)</p><p class="refpurpose"><span class="refname">openssl_private_decrypt</span> &mdash; <span class="dc-title"> 使用私钥解密数据 </span></p>
</div>
<div class="refsect1 description" id="refsect1-function.openssl-private-decrypt-description">
<h3 class="title">说明</h3>
<div class="methodsynopsis dc-description">
<span class="methodname"><strong>openssl_private_decrypt</strong></span>
( <span class="methodparam"><span class="type">string</span> <code class="parameter">$data</code></span>
, <span class="methodparam"><span class="type">string</span> <code class="parameter reference">&$decrypted</code></span>
, <span class="methodparam"><span class="type"><a href="language.pseudo-types.html#language.types.mixed" class="type mixed">mixed</a></span> <code class="parameter">$key</code></span>
[, <span class="methodparam"><span class="type">int</span> <code class="parameter">$padding</code><span class="initializer"> = OPENSSL_PKCS1_PADDING</span></span>
] ) : <span class="type">bool</span></div>
<div class="caution"><strong class="caution">Caution</strong><p class="para">本函数并不会生成安全加密的值,不应用于加密用途。若需要安全加密的值,考虑使用<span class="function"><a href="openssl_random_pseudo_bytes.html" class="function">openssl_random_pseudo_bytes()</a></span></p></div>
<p class="para">
<span class="function"><strong>openssl_private_decrypt()</strong></span> 解密先前通过 <span class="function"><a href="openssl_public_encrypt.html" class="function">openssl_public_encrypt()</a></span> 函数加密的
<code class="parameter">data</code> 并将结果保存至<code class="parameter">decrypted</code>变量中。
</p>
<p class="para">
你可以用该函数来解密只对你可用的数据。
</p>
</div>
<div class="refsect1 parameters" id="refsect1-function.openssl-private-decrypt-parameters">
<h3 class="title">参数</h3>
<p class="para">
<dl>
<dt>
<code class="parameter">data</code></dt>
<dd>
<p class="para">
</p>
</dd>
<dt>
<code class="parameter">decrypted</code></dt>
<dd>
<p class="para">
</p>
</dd>
<dt>
<code class="parameter">key</code></dt>
<dd>
<p class="para">
<code class="parameter">key</code> 必须是和用来加密数据所用公钥对应的私钥。
</p>
</dd>
<dt>
<code class="parameter">padding</code></dt>
<dd>
<p class="para">
<code class="parameter">padding</code> 可以是如下值:
<strong><code>OPENSSL_PKCS1_PADDING</code></strong>,
<strong><code>OPENSSL_SSLV23_PADDING</code></strong>,
<strong><code>OPENSSL_PKCS1_OAEP_PADDING</code></strong>,
<strong><code>OPENSSL_NO_PADDING</code></strong>.
</p>
</dd>
</dl>
</p>
</div>
<div class="refsect1 returnvalues" id="refsect1-function.openssl-private-decrypt-returnvalues">
<h3 class="title">返回值</h3>
<p class="para">
成功时返回 <strong><code>TRUE</code></strong> 或者在失败时返回 <strong><code>FALSE</code></strong>
</p>
</div>
<div class="refsect1 seealso" id="refsect1-function.openssl-private-decrypt-seealso">
<h3 class="title">参见</h3>
<p class="para">
<ul class="simplelist">
<li class="member"><span class="function"><a href="openssl_public_encrypt.html" class="function" rel="rdfs-seeAlso">openssl_public_encrypt()</a> - 使用公钥加密数据</span></li>
<li class="member"><span class="function"><a href="openssl_public_decrypt.html" class="function" rel="rdfs-seeAlso">openssl_public_decrypt()</a> - 使用公钥解密数据</span></li>
</ul>
</p>
</div>
</div></div></div></body></html>