Class: Aws::PaymentCryptography::Types::ExportDukptInitialKey
- Inherits:
-
Struct
- Object
- Struct
- Aws::PaymentCryptography::Types::ExportDukptInitialKey
- Defined in:
- gems/aws-sdk-paymentcryptography/lib/aws-sdk-paymentcryptography/types.rb
Overview
Parameter information for IPEK generation during export.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key_serial_number ⇒ String
The KSN for IPEK generation using DUKPT.
Instance Attribute Details
#key_serial_number ⇒ String
The KSN for IPEK generation using DUKPT.
KSN must be padded before sending to Amazon Web Services Payment Cryptography. KSN hex length should be 20 for a TDES_2KEY key or 24 for an AES key.
265 266 267 268 269 |
# File 'gems/aws-sdk-paymentcryptography/lib/aws-sdk-paymentcryptography/types.rb', line 265 class ExportDukptInitialKey < Struct.new( :key_serial_number) SENSITIVE = [] include Aws::Structure end |