Class: Aws::PaymentCryptographyData::Types::EncryptDataOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::PaymentCryptographyData::Types::EncryptDataOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-paymentcryptographydata/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:cipher_text]
Instance Attribute Summary collapse
-
#cipher_text ⇒ String
The encrypted ciphertext.
-
#key_arn ⇒ String
The ‘keyARN` of the encryption key that Amazon Web Services Payment Cryptography uses for plaintext encryption.
-
#key_check_value ⇒ String
The key check value (KCV) of the encryption key.
Instance Attribute Details
#cipher_text ⇒ String
The encrypted ciphertext.
967 968 969 970 971 972 973 |
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 967 class EncryptDataOutput < Struct.new( :key_arn, :key_check_value, :cipher_text) SENSITIVE = [:cipher_text] include Aws::Structure end |
#key_arn ⇒ String
The ‘keyARN` of the encryption key that Amazon Web Services Payment Cryptography uses for plaintext encryption.
967 968 969 970 971 972 973 |
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 967 class EncryptDataOutput < Struct.new( :key_arn, :key_check_value, :cipher_text) SENSITIVE = [:cipher_text] include Aws::Structure end |
#key_check_value ⇒ String
The key check value (KCV) of the encryption key. The KCV is used to check if all parties holding a given key have the same key or to detect that a key has changed.
Amazon Web Services Payment Cryptography computes the KCV according to the CMAC specification.
967 968 969 970 971 972 973 |
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 967 class EncryptDataOutput < Struct.new( :key_arn, :key_check_value, :cipher_text) SENSITIVE = [:cipher_text] include Aws::Structure end |