Class: TencentCloud::Kms::V20190118::PostQuantumCryptoDecryptResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Kms::V20190118::PostQuantumCryptoDecryptResponse
- Defined in:
- lib/v20190118/models.rb
Overview
PostQuantumCryptoDecrypt返回参数结构体
Instance Attribute Summary collapse
-
#KeyId ⇒ Object
若调用时提供了 EncryptionPublicKey,则该字段值为使用 EncryptionPublicKey 公钥进行非对称加密后的 Base64 编码的密文。需在 Base64 解码后,使用用户上传的公钥对应的私钥进行进一步解密,以获取明文。.
-
#PlainText ⇒ Object
若调用时提供了 EncryptionPublicKey,则该字段值为使用 EncryptionPublicKey 公钥进行非对称加密后的 Base64 编码的密文。需在 Base64 解码后,使用用户上传的公钥对应的私钥进行进一步解密,以获取明文。.
-
#RequestId ⇒ Object
若调用时提供了 EncryptionPublicKey,则该字段值为使用 EncryptionPublicKey 公钥进行非对称加密后的 Base64 编码的密文。需在 Base64 解码后,使用用户上传的公钥对应的私钥进行进一步解密,以获取明文。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(keyid = nil, plaintext = nil, requestid = nil) ⇒ PostQuantumCryptoDecryptResponse
constructor
A new instance of PostQuantumCryptoDecryptResponse.
Constructor Details
#initialize(keyid = nil, plaintext = nil, requestid = nil) ⇒ PostQuantumCryptoDecryptResponse
Returns a new instance of PostQuantumCryptoDecryptResponse.
2883 2884 2885 2886 2887 |
# File 'lib/v20190118/models.rb', line 2883 def initialize(keyid=nil, plaintext=nil, requestid=nil) @KeyId = keyid @PlainText = plaintext @RequestId = requestid end |
Instance Attribute Details
#KeyId ⇒ Object
若调用时提供了 EncryptionPublicKey,则该字段值为使用 EncryptionPublicKey 公钥进行非对称加密后的 Base64 编码的密文。需在 Base64 解码后,使用用户上传的公钥对应的私钥进行进一步解密,以获取明文。
2881 2882 2883 |
# File 'lib/v20190118/models.rb', line 2881 def KeyId @KeyId end |
#PlainText ⇒ Object
若调用时提供了 EncryptionPublicKey,则该字段值为使用 EncryptionPublicKey 公钥进行非对称加密后的 Base64 编码的密文。需在 Base64 解码后,使用用户上传的公钥对应的私钥进行进一步解密,以获取明文。
2881 2882 2883 |
# File 'lib/v20190118/models.rb', line 2881 def PlainText @PlainText end |
#RequestId ⇒ Object
若调用时提供了 EncryptionPublicKey,则该字段值为使用 EncryptionPublicKey 公钥进行非对称加密后的 Base64 编码的密文。需在 Base64 解码后,使用用户上传的公钥对应的私钥进行进一步解密,以获取明文。
2881 2882 2883 |
# File 'lib/v20190118/models.rb', line 2881 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
2889 2890 2891 2892 2893 |
# File 'lib/v20190118/models.rb', line 2889 def deserialize(params) @KeyId = params['KeyId'] @PlainText = params['PlainText'] @RequestId = params['RequestId'] end |