Class: Aws::PaymentCryptographyData::Types::TranslatePinDataOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::PaymentCryptographyData::Types::TranslatePinDataOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-paymentcryptographydata/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:pin_block]
Instance Attribute Summary collapse
-
#key_arn ⇒ String
The ‘keyARN` of the encryption key that Amazon Web Services Payment Cryptography uses to encrypt outgoing PIN block data after translation.
-
#key_check_value ⇒ String
The key check value (KCV) of the encryption key.
-
#pin_block ⇒ String
The outgoing encrypted PIN block data after translation.
Instance Attribute Details
#key_arn ⇒ String
The ‘keyARN` of the encryption key that Amazon Web Services Payment Cryptography uses to encrypt outgoing PIN block data after translation.
2251 2252 2253 2254 2255 2256 2257 |
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 2251 class TranslatePinDataOutput < Struct.new( :pin_block, :key_arn, :key_check_value) SENSITIVE = [:pin_block] 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.
2251 2252 2253 2254 2255 2256 2257 |
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 2251 class TranslatePinDataOutput < Struct.new( :pin_block, :key_arn, :key_check_value) SENSITIVE = [:pin_block] include Aws::Structure end |
#pin_block ⇒ String
The outgoing encrypted PIN block data after translation.
2251 2252 2253 2254 2255 2256 2257 |
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 2251 class TranslatePinDataOutput < Struct.new( :pin_block, :key_arn, :key_check_value) SENSITIVE = [:pin_block] include Aws::Structure end |