Encryption.php 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <?php
  2. /*
  3. * Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License");
  6. * you may not use this file except in compliance with the License.
  7. * You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. namespace TencentCloud\Faceid\V20180301\Models;
  18. use TencentCloud\Common\AbstractModel;
  19. /**
  20. * 敏感数据加密
  21. *
  22. * @method array getEncryptList() 获取在使用加密服务时,填入要被加密的字段。本接口中可填入加密后的一个或多个字段
  23. * @method void setEncryptList(array $EncryptList) 设置在使用加密服务时,填入要被加密的字段。本接口中可填入加密后的一个或多个字段
  24. * @method string getCiphertextBlob() 获取有加密需求的用户,接入传入kms的CiphertextBlob,关于数据加密可查阅<a href="https://cloud.tencent.com/document/product/1007/47180">数据加密</a> 文档。
  25. * @method void setCiphertextBlob(string $CiphertextBlob) 设置有加密需求的用户,接入传入kms的CiphertextBlob,关于数据加密可查阅<a href="https://cloud.tencent.com/document/product/1007/47180">数据加密</a> 文档。
  26. * @method string getIv() 获取有加密需求的用户,传入CBC加密的初始向量(客户自定义字符串,长度16字符)。
  27. * @method void setIv(string $Iv) 设置有加密需求的用户,传入CBC加密的初始向量(客户自定义字符串,长度16字符)。
  28. * @method string getAlgorithm() 获取加密使用的算法(支持'AES-256-CBC'、'SM4-GCM'),不传默认为'AES-256-CBC'
  29. * @method void setAlgorithm(string $Algorithm) 设置加密使用的算法(支持'AES-256-CBC'、'SM4-GCM'),不传默认为'AES-256-CBC'
  30. * @method array getTagList() 获取SM4-GCM算法生成的消息摘要(校验消息完整性时使用)
  31. * @method void setTagList(array $TagList) 设置SM4-GCM算法生成的消息摘要(校验消息完整性时使用)
  32. */
  33. class Encryption extends AbstractModel
  34. {
  35. /**
  36. * @var array 在使用加密服务时,填入要被加密的字段。本接口中可填入加密后的一个或多个字段
  37. */
  38. public $EncryptList;
  39. /**
  40. * @var string 有加密需求的用户,接入传入kms的CiphertextBlob,关于数据加密可查阅<a href="https://cloud.tencent.com/document/product/1007/47180">数据加密</a> 文档。
  41. */
  42. public $CiphertextBlob;
  43. /**
  44. * @var string 有加密需求的用户,传入CBC加密的初始向量(客户自定义字符串,长度16字符)。
  45. */
  46. public $Iv;
  47. /**
  48. * @var string 加密使用的算法(支持'AES-256-CBC'、'SM4-GCM'),不传默认为'AES-256-CBC'
  49. */
  50. public $Algorithm;
  51. /**
  52. * @var array SM4-GCM算法生成的消息摘要(校验消息完整性时使用)
  53. */
  54. public $TagList;
  55. /**
  56. * @param array $EncryptList 在使用加密服务时,填入要被加密的字段。本接口中可填入加密后的一个或多个字段
  57. * @param string $CiphertextBlob 有加密需求的用户,接入传入kms的CiphertextBlob,关于数据加密可查阅<a href="https://cloud.tencent.com/document/product/1007/47180">数据加密</a> 文档。
  58. * @param string $Iv 有加密需求的用户,传入CBC加密的初始向量(客户自定义字符串,长度16字符)。
  59. * @param string $Algorithm 加密使用的算法(支持'AES-256-CBC'、'SM4-GCM'),不传默认为'AES-256-CBC'
  60. * @param array $TagList SM4-GCM算法生成的消息摘要(校验消息完整性时使用)
  61. */
  62. function __construct()
  63. {
  64. }
  65. /**
  66. * For internal only. DO NOT USE IT.
  67. */
  68. public function deserialize($param)
  69. {
  70. if ($param === null) {
  71. return;
  72. }
  73. if (array_key_exists("EncryptList",$param) and $param["EncryptList"] !== null) {
  74. $this->EncryptList = $param["EncryptList"];
  75. }
  76. if (array_key_exists("CiphertextBlob",$param) and $param["CiphertextBlob"] !== null) {
  77. $this->CiphertextBlob = $param["CiphertextBlob"];
  78. }
  79. if (array_key_exists("Iv",$param) and $param["Iv"] !== null) {
  80. $this->Iv = $param["Iv"];
  81. }
  82. if (array_key_exists("Algorithm",$param) and $param["Algorithm"] !== null) {
  83. $this->Algorithm = $param["Algorithm"];
  84. }
  85. if (array_key_exists("TagList",$param) and $param["TagList"] !== null) {
  86. $this->TagList = $param["TagList"];
  87. }
  88. }
  89. }