解密
<p><strong><span style="font-size:18px">解密:Decrypt</span></strong></p>
<p><strong>描述</strong></p>
<p>对密文ciphertextBlob进行解密。密文是通过调用以下API接口产生的:</p>
<ul>
<li>GenerateDataKey</li>
<li>Encrypt</li>
</ul>
<p><strong>请求参数</strong></p>
<table border="1">
<thead>
<tr>
<th>
<p>名称</p>
</th>
<th>
<p>类型</p>
</th>
<th>
<p>是否必需</p>
</th>
<th>
<p>描述</p>
</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<p>cipherTextBlob</p>
</td>
<td>
<p>String</p>
</td>
<td>
<p>是</p>
</td>
<td>
<p>待解密的密文</p>
</td>
</tr>
<tr>
<td>
<p>encryptionContext</p>
</td>
<td>
<p>String</p>
</td>
<td>
<p>否</p>
</td>
<td>
<p>附加盐值,如果指定了该参数,则在调用Decrypt 时需要提供同样的参数</p>
</td>
</tr>
</tbody>
</table>
<p><strong>返回参数</strong></p>
<table border="1">
<thead>
<tr>
<th>
<p>名称</p>
</th>
<th>
<p>类型</p>
</th>
<th>
<p>描述</p>
</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<p>code</p>
</td>
<td>
<p>String</p>
</td>
<td>
<p>返回码,成功返回"SUCCESS"</p>
</td>
</tr>
<tr>
<td>
<p>keyId</p>
</td>
<td>
<p>String</p>
</td>
<td>
<p>密钥的全局唯一标识符</p>
</td>
</tr>
<tr>
<td>
<p>plainText</p>
</td>
<td>
<p>String</p>
</td>
<td>
<p>解密后的明文</p>
</td>
</tr>
<tr>
<td>
<p>requestId</p>
</td>
<td>
<p>String</p>
</td>
<td>
<p>当前请求ID</p>
</td>
</tr>
</tbody>
</table>
<p><strong>请求示例</strong></p>
<pre>
<code>https://kms-cn-shanghai.yun.pingan.com/?action=Decrypt
&cipherTextBlob=<your cipher text blob>
&encryptionContext=< encryption context >
&<公共请求参数></code></pre>
<p><strong>返回示例</strong></p>
<pre>
<code>{
"code": "SUCCESS",
"plainText": "your plain text",
"keyId": "your key id",
"requestId": "dbfa6ea7-3984-4573-9623-cbe5bb1264c5"
}</code></pre>
<p> </p>
提交成功!非常感谢您的反馈,我们会继续努力做到更好!