tencentcloud-sdk-nodejs-faceid 4.1.188 → 4.1.189
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1723,27 +1723,27 @@ export interface BankCard4EVerificationResponse {
|
|
|
1723
1723
|
*/
|
|
1724
1724
|
export interface Encryption {
|
|
1725
1725
|
/**
|
|
1726
|
-
*
|
|
1726
|
+
* <p>在使用加密服务时,填入要被加密的字段。本接口中可填入加密后的一个或多个字段</p>
|
|
1727
1727
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1728
1728
|
*/
|
|
1729
1729
|
EncryptList: Array<string>;
|
|
1730
1730
|
/**
|
|
1731
|
-
*
|
|
1731
|
+
* <p>加密后的对称密钥,关于密钥的生成和使用请查阅<a href="https://www.tencentcloud.com/document/product/1061/77849">数据加密</a> 文档。</p>
|
|
1732
1732
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1733
1733
|
*/
|
|
1734
1734
|
CiphertextBlob: string;
|
|
1735
1735
|
/**
|
|
1736
|
-
*
|
|
1736
|
+
* <p>有加密需求的用户,传入CBC加密的初始向量(客户自定义字符串,长度16字符)。</p>
|
|
1737
1737
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1738
1738
|
*/
|
|
1739
1739
|
Iv: string;
|
|
1740
1740
|
/**
|
|
1741
|
-
*
|
|
1741
|
+
* <p>加密使用的算法(支持'AES-256-CBC'、'SM4-GCM'),不传默认为'AES-256-CBC'</p>
|
|
1742
1742
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1743
1743
|
*/
|
|
1744
1744
|
Algorithm?: string;
|
|
1745
1745
|
/**
|
|
1746
|
-
* SM4-GCM
|
|
1746
|
+
* <p>SM4-GCM算法生成的消息摘要(校验消息完整性时使用)</p>
|
|
1747
1747
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1748
1748
|
*/
|
|
1749
1749
|
TagList?: Array<string>;
|