Class: Aws::PaymentCryptographyData::Types::GenerateMacOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::PaymentCryptographyData::Types::GenerateMacOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-paymentcryptographydata/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:mac]
Instance Attribute Summary collapse
-
#key_arn ⇒ String
The ‘keyARN` of the encryption key that Amazon Web Services Payment Cryptography uses for MAC generation.
-
#key_check_value ⇒ String
The key check value (KCV) of the encryption key.
-
#mac ⇒ String
The MAC cryptogram generated within Amazon Web Services Payment Cryptography.
Instance Attribute Details
#key_arn ⇒ String
The ‘keyARN` of the encryption key that Amazon Web Services Payment Cryptography uses for MAC generation.
1235 1236 1237 1238 1239 1240 1241 |
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 1235 class GenerateMacOutput < Struct.new( :key_arn, :key_check_value, :mac) SENSITIVE = [:mac] 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.
1235 1236 1237 1238 1239 1240 1241 |
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 1235 class GenerateMacOutput < Struct.new( :key_arn, :key_check_value, :mac) SENSITIVE = [:mac] include Aws::Structure end |
#mac ⇒ String
The MAC cryptogram generated within Amazon Web Services Payment Cryptography.
1235 1236 1237 1238 1239 1240 1241 |
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 1235 class GenerateMacOutput < Struct.new( :key_arn, :key_check_value, :mac) SENSITIVE = [:mac] include Aws::Structure end |