Class: Aws::PaymentCryptographyData::Types::VisaPinVerificationValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::PaymentCryptographyData::Types::VisaPinVerificationValue
- Defined in:
- gems/aws-sdk-paymentcryptographydata/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.
3149 3150 3151 3152 3153 3154 |
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 3149 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).
3149 3150 3151 3152 3153 3154 |
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 3149 class VisaPinVerificationValue < Struct.new( :encrypted_pin_block, :pin_verification_key_index) SENSITIVE = [:encrypted_pin_block] include Aws::Structure end |