AWSKMSEncryptResponse

Objective-C

@interface AWSKMSEncryptResponse

Swift

class AWSKMSEncryptResponse
  • The encrypted plaintext. When you use the HTTP API or the Amazon Web Services CLI, the value is Base64-encoded. Otherwise, it is not Base64-encoded.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSData *_Nullable ciphertextBlob;

    Swift

    var ciphertextBlob: Data? { get set }
  • The encryption algorithm that was used to encrypt the plaintext.

    Declaration

    Objective-C

    @property (nonatomic) AWSKMSEncryptionAlgorithmSpec encryptionAlgorithm;

    Swift

    var encryptionAlgorithm: AWSKMSEncryptionAlgorithmSpec { get set }
  • The Amazon Resource Name (key ARN) of the KMS key that was used to encrypt the plaintext.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable keyId;

    Swift

    var keyId: String? { get set }