AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

This is the response object from the ReEncrypt operation.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceResponse
    Amazon.KeyManagementService.Model.ReEncryptResponse

Namespace: Amazon.KeyManagementService.Model
Assembly: AWSSDK.KeyManagementService.dll
Version: 3.x.y.z

Syntax

C#
public class ReEncryptResponse : AmazonWebServiceResponse

The ReEncryptResponse type exposes the following members

Constructors

NameDescription
Public Method ReEncryptResponse()

Properties

NameTypeDescription
Public Property CiphertextBlob System.IO.MemoryStream

Gets and sets the property CiphertextBlob.

The reencrypted data. When you use the HTTP API or the Amazon Web Services CLI, the value is Base64-encoded. Otherwise, it is not Base64-encoded.

Public Property ContentLength System.Int64 Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property DestinationEncryptionAlgorithm Amazon.KeyManagementService.EncryptionAlgorithmSpec

Gets and sets the property DestinationEncryptionAlgorithm.

The encryption algorithm that was used to reencrypt the data.

Public Property HttpStatusCode System.Net.HttpStatusCode Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property KeyId System.String

Gets and sets the property KeyId.

The Amazon Resource Name (key ARN) of the KMS key that was used to reencrypt the data.

Public Property ResponseMetadata Amazon.Runtime.ResponseMetadata Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property SourceEncryptionAlgorithm Amazon.KeyManagementService.EncryptionAlgorithmSpec

Gets and sets the property SourceEncryptionAlgorithm.

The encryption algorithm that was used to decrypt the ciphertext before it was reencrypted.

Public Property SourceKeyId System.String

Gets and sets the property SourceKeyId.

Unique identifier of the KMS key used to originally encrypt the data.

Examples

The following example reencrypts data with the specified KMS key.

To reencrypt data


var client = new AmazonKeyManagementServiceClient();
var response = client.ReEncrypt(new ReEncryptRequest 
{
    CiphertextBlob = new MemoryStream(<binary data>), // The data to reencrypt.
    DestinationKeyId = "0987dcba-09fe-87dc-65ba-ab0987654321" // The identifier of the KMS key to use to reencrypt the data. You can use any valid key identifier.
});

MemoryStream ciphertextBlob = response.CiphertextBlob; // The reencrypted data.
string keyId = response.KeyId; // The ARN of the KMS key that was used to reencrypt the data.
string sourceKeyId = response.SourceKeyId; // The ARN of the KMS key that was originally used to encrypt the data.

            

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5, 4.0, 3.5