101 lines
3.0 KiB
XML
101 lines
3.0 KiB
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
||
<packet extend="base">
|
||
<req>
|
||
|
||
<command>
|
||
<hex>QQ</hex>
|
||
</command>
|
||
<data extend="data">
|
||
<privateKeyTag len="27" cn="指示私钥位置的标记">
|
||
数字为存储私钥的索引,除了
|
||
全 9 表示使用由命令中提供的密钥。
|
||
27 位的索引号:16 位机构号+3 位密钥类型+8 位密钥
|
||
索引号。
|
||
</privateKeyTag>
|
||
</data>
|
||
|
||
|
||
|
||
</req>
|
||
<res>
|
||
|
||
<command>
|
||
<hex>QR</hex>
|
||
</command>
|
||
<data>
|
||
<error len="2" cn="错误码" format="X" :catch="catchError('%s')">
|
||
<options>
|
||
<option cn="无错误">
|
||
<hex>00</hex>
|
||
</option>
|
||
<option cn="无效的私钥类型">
|
||
<hex>03</hex>
|
||
</option>
|
||
<option cn="无效私钥标记">
|
||
<hex>04</hex>
|
||
</option>
|
||
<option cn="无效的哈希标识">
|
||
<hex>05</hex>
|
||
</option>
|
||
<option cn="无效的签名标识">
|
||
<hex>06</hex>
|
||
</option>
|
||
<option cn="无效的附加标识">
|
||
<hex>07</hex>
|
||
</option>
|
||
<option cn="LMK 错误">
|
||
LMK 错误;报告给管理员。
|
||
<hex>13</hex>
|
||
</option>
|
||
<option cn="输入数据错">
|
||
<hex>15</hex>
|
||
</option>
|
||
<option cn="DSP 错误">
|
||
DSP 错误;报告给管理员。
|
||
<hex>47</hex>
|
||
</option>
|
||
<option cn="私钥错误">
|
||
私钥错误;报告给管理员。
|
||
<hex>49</hex>
|
||
</option>
|
||
<option cn="无效摘要信息语法(仅仅无哈希模式)">
|
||
<hex>74</hex>
|
||
</option>
|
||
<option cn="公钥长度错误">
|
||
<hex>76</hex>
|
||
</option>
|
||
<option cn="私钥长度错误">
|
||
<hex>78</hex>
|
||
</option>
|
||
<option cn="输入数据长度错误">
|
||
<hex>80</hex>
|
||
</option>
|
||
</options>
|
||
</error>
|
||
|
||
<publicLen len="4" cn="公钥的字节长度">
|
||
公钥的字节长度
|
||
</publicLen>
|
||
|
||
<publicKey :len="publicLen()" cn="公钥">
|
||
公钥
|
||
</publicKey>
|
||
|
||
<tailSep len="1" required="false" cn="尾分隔">
|
||
可选项。如果显示消息尾域,则该域必须显示。值为 “X’19”。
|
||
<hex>19</hex>
|
||
</tailSep>
|
||
|
||
<tail maxLen="32" required="false" cn="尾部">
|
||
可选项。最大长度为 32个字符。
|
||
</tail>
|
||
</data>
|
||
|
||
|
||
|
||
</res>
|
||
<script>function publicLen() {
|
||
return Util.a2i( $final.getSection('data').getSection('publicLen') )
|
||
} </script>
|
||
</packet>
|