Class: Aws::PaymentCryptographyData::Types::WrappedWorkingKey
- Inherits:
-
Struct
- Object
- Struct
- Aws::PaymentCryptographyData::Types::WrappedWorkingKey
- Defined in:
- gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb
Overview
The parameter information of the outgoing wrapped key block.
Constant Summary collapse
- SENSITIVE =
[:wrapped_key_material]
Instance Attribute Summary collapse
-
#key_check_value ⇒ String
The key check value (KCV) of the key contained within the outgoing TR31WrappedKeyBlock.
-
#wrapped_key_material ⇒ String
The wrapped key block of the outgoing transaction key.
-
#wrapped_key_material_format ⇒ String
The key block format of the wrapped key.
Instance Attribute Details
#key_check_value ⇒ String
The key check value (KCV) of the key contained within the outgoing TR31WrappedKeyBlock.
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. For more information on KCV, see KCV in the Amazon Web Services Payment Cryptography User Guide.
3076 3077 3078 3079 3080 3081 3082 |
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 3076 class WrappedWorkingKey < Struct.new( :wrapped_key_material, :key_check_value, :wrapped_key_material_format) SENSITIVE = [:wrapped_key_material] include Aws::Structure end |
#wrapped_key_material ⇒ String
The wrapped key block of the outgoing transaction key.
3076 3077 3078 3079 3080 3081 3082 |
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 3076 class WrappedWorkingKey < Struct.new( :wrapped_key_material, :key_check_value, :wrapped_key_material_format) SENSITIVE = [:wrapped_key_material] include Aws::Structure end |
#wrapped_key_material_format ⇒ String
The key block format of the wrapped key.
3076 3077 3078 3079 3080 3081 3082 |
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 3076 class WrappedWorkingKey < Struct.new( :wrapped_key_material, :key_check_value, :wrapped_key_material_format) SENSITIVE = [:wrapped_key_material] include Aws::Structure end |