Class: Aws::PaymentCryptographyData::Types::VerifyAuthRequestCryptogramOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::PaymentCryptographyData::Types::VerifyAuthRequestCryptogramOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-paymentcryptographydata/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:auth_response_value]
Instance Attribute Summary collapse
-
#auth_response_value ⇒ String
The result for ARQC verification or ARPC generation within Amazon Web Services Payment Cryptography.
-
#key_arn ⇒ String
The ‘keyARN` of the major encryption key that Amazon Web Services Payment Cryptography uses for ARQC verification.
-
#key_check_value ⇒ String
The key check value (KCV) of the encryption key.
Instance Attribute Details
#auth_response_value ⇒ String
The result for ARQC verification or ARPC generation within Amazon Web Services Payment Cryptography.
2450 2451 2452 2453 2454 2455 2456 |
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 2450 class VerifyAuthRequestCryptogramOutput < Struct.new( :key_arn, :key_check_value, :auth_response_value) SENSITIVE = [:auth_response_value] include Aws::Structure end |
#key_arn ⇒ String
The ‘keyARN` of the major encryption key that Amazon Web Services Payment Cryptography uses for ARQC verification.
2450 2451 2452 2453 2454 2455 2456 |
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 2450 class VerifyAuthRequestCryptogramOutput < Struct.new( :key_arn, :key_check_value, :auth_response_value) SENSITIVE = [:auth_response_value] 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.
2450 2451 2452 2453 2454 2455 2456 |
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 2450 class VerifyAuthRequestCryptogramOutput < Struct.new( :key_arn, :key_check_value, :auth_response_value) SENSITIVE = [:auth_response_value] include Aws::Structure end |