Class: Aws::PaymentCryptographyData::Types::VisaPinVerificationValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::PaymentCryptographyData::Types::VisaPinVerificationValue
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-paymentcryptographydata/types.rb
Overview
Parameters that are required to generate or verify Visa PVV (PIN Verification Value).
Constant Summary collapse
- SENSITIVE =
[:encrypted_pin_block]
Instance Attribute Summary collapse
-
#encrypted_pin_block ⇒ String
The encrypted PIN block data to verify.
-
#pin_verification_key_index ⇒ Integer
The value for PIN verification index.
Instance Attribute Details
#encrypted_pin_block ⇒ String
The encrypted PIN block data to verify.
2801 2802 2803 2804 2805 2806 |
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 2801 class VisaPinVerificationValue < Struct.new( :encrypted_pin_block, :pin_verification_key_index) SENSITIVE = [:encrypted_pin_block] include Aws::Structure end |
#pin_verification_key_index ⇒ Integer
The value for PIN verification index. It is used in the Visa PIN algorithm to calculate the PVV (PIN Verification Value).
2801 2802 2803 2804 2805 2806 |
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 2801 class VisaPinVerificationValue < Struct.new( :encrypted_pin_block, :pin_verification_key_index) SENSITIVE = [:encrypted_pin_block] include Aws::Structure end |