Google Cloud Key Management Service v1 API - Class DecryptResponse (3.10.0)

public sealed class DecryptResponse : IMessage<DecryptResponse>, IEquatable<DecryptResponse>, IDeepCloneable<DecryptResponse>, IBufferMessage, IMessage

Reference documentation and code samples for the Google Cloud Key Management Service v1 API class DecryptResponse.

Response message for [KeyManagementService.Decrypt][google.cloud.kms.v1.KeyManagementService.Decrypt].

Inheritance

object > DecryptResponse

Namespace

Google.Cloud.Kms.V1

Assembly

Google.Cloud.Kms.V1.dll

Constructors

DecryptResponse()

public DecryptResponse()

DecryptResponse(DecryptResponse)

public DecryptResponse(DecryptResponse other)
Parameter
NameDescription
otherDecryptResponse

Properties

Plaintext

public ByteString Plaintext { get; set; }

The decrypted data originally supplied in [EncryptRequest.plaintext][google.cloud.kms.v1.EncryptRequest.plaintext].

Property Value
TypeDescription
ByteString

PlaintextCrc32C

public long? PlaintextCrc32C { get; set; }

Integrity verification field. A CRC32C checksum of the returned [DecryptResponse.plaintext][google.cloud.kms.v1.DecryptResponse.plaintext]. An integrity check of [DecryptResponse.plaintext][google.cloud.kms.v1.DecryptResponse.plaintext] can be performed by computing the CRC32C checksum of [DecryptResponse.plaintext][google.cloud.kms.v1.DecryptResponse.plaintext] and comparing your results to this field. Discard the response in case of non-matching checksum values, and perform a limited number of retries. A persistent mismatch may indicate an issue in your computation of the CRC32C checksum. Note: receiving this response message indicates that [KeyManagementService][google.cloud.kms.v1.KeyManagementService] is able to successfully decrypt the [ciphertext][google.cloud.kms.v1.DecryptRequest.ciphertext]. Note: This field is defined as int64 for reasons of compatibility across different languages. However, it is a non-negative integer, which will never exceed 2^32-1, and can be safely downconverted to uint32 in languages that support this type.

Property Value
TypeDescription
long

ProtectionLevel

public ProtectionLevel ProtectionLevel { get; set; }

The [ProtectionLevel][google.cloud.kms.v1.ProtectionLevel] of the [CryptoKeyVersion][google.cloud.kms.v1.CryptoKeyVersion] used in decryption.

Property Value
TypeDescription
ProtectionLevel

UsedPrimary

public bool UsedPrimary { get; set; }

Whether the Decryption was performed using the primary key version.

Property Value
TypeDescription
bool