Interface DukptEncryptionAttributes.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DukptEncryptionAttributes.Builder,DukptEncryptionAttributes>,SdkBuilder<DukptEncryptionAttributes.Builder,DukptEncryptionAttributes>,SdkPojo
- Enclosing class:
- DukptEncryptionAttributes
public static interface DukptEncryptionAttributes.Builder extends SdkPojo, CopyableBuilder<DukptEncryptionAttributes.Builder,DukptEncryptionAttributes>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DukptEncryptionAttributes.BuilderdukptKeyDerivationType(String dukptKeyDerivationType)The key type encrypted using DUKPT from a Base Derivation Key (BDK) and Key Serial Number (KSN).DukptEncryptionAttributes.BuilderdukptKeyDerivationType(DukptDerivationType dukptKeyDerivationType)The key type encrypted using DUKPT from a Base Derivation Key (BDK) and Key Serial Number (KSN).DukptEncryptionAttributes.BuilderdukptKeyVariant(String dukptKeyVariant)The type of use of DUKPT, which can be incoming data decryption, outgoing data encryption, or both.DukptEncryptionAttributes.BuilderdukptKeyVariant(DukptKeyVariant dukptKeyVariant)The type of use of DUKPT, which can be incoming data decryption, outgoing data encryption, or both.DukptEncryptionAttributes.BuilderinitializationVector(String initializationVector)An input used to provide the intial state.DukptEncryptionAttributes.BuilderkeySerialNumber(String keySerialNumber)The unique identifier known as Key Serial Number (KSN) that comes from an encrypting device using DUKPT encryption method.DukptEncryptionAttributes.Buildermode(String mode)The block cipher method to use for encryption.DukptEncryptionAttributes.Buildermode(DukptEncryptionMode mode)The block cipher method to use for encryption.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
dukptKeyDerivationType
DukptEncryptionAttributes.Builder dukptKeyDerivationType(String dukptKeyDerivationType)
The key type encrypted using DUKPT from a Base Derivation Key (BDK) and Key Serial Number (KSN). This must be less than or equal to the strength of the BDK. For example, you can't use
AES_128as a derivation type for a BDK ofAES_128orTDES_2KEY- Parameters:
dukptKeyDerivationType- The key type encrypted using DUKPT from a Base Derivation Key (BDK) and Key Serial Number (KSN). This must be less than or equal to the strength of the BDK. For example, you can't useAES_128as a derivation type for a BDK ofAES_128orTDES_2KEY- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DukptDerivationType,DukptDerivationType
-
dukptKeyDerivationType
DukptEncryptionAttributes.Builder dukptKeyDerivationType(DukptDerivationType dukptKeyDerivationType)
The key type encrypted using DUKPT from a Base Derivation Key (BDK) and Key Serial Number (KSN). This must be less than or equal to the strength of the BDK. For example, you can't use
AES_128as a derivation type for a BDK ofAES_128orTDES_2KEY- Parameters:
dukptKeyDerivationType- The key type encrypted using DUKPT from a Base Derivation Key (BDK) and Key Serial Number (KSN). This must be less than or equal to the strength of the BDK. For example, you can't useAES_128as a derivation type for a BDK ofAES_128orTDES_2KEY- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DukptDerivationType,DukptDerivationType
-
dukptKeyVariant
DukptEncryptionAttributes.Builder dukptKeyVariant(String dukptKeyVariant)
The type of use of DUKPT, which can be incoming data decryption, outgoing data encryption, or both.
- Parameters:
dukptKeyVariant- The type of use of DUKPT, which can be incoming data decryption, outgoing data encryption, or both.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DukptKeyVariant,DukptKeyVariant
-
dukptKeyVariant
DukptEncryptionAttributes.Builder dukptKeyVariant(DukptKeyVariant dukptKeyVariant)
The type of use of DUKPT, which can be incoming data decryption, outgoing data encryption, or both.
- Parameters:
dukptKeyVariant- The type of use of DUKPT, which can be incoming data decryption, outgoing data encryption, or both.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DukptKeyVariant,DukptKeyVariant
-
initializationVector
DukptEncryptionAttributes.Builder initializationVector(String initializationVector)
An input used to provide the intial state. If no value is provided, Amazon Web Services Payment Cryptography defaults it to zero.
- Parameters:
initializationVector- An input used to provide the intial state. If no value is provided, Amazon Web Services Payment Cryptography defaults it to zero.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
keySerialNumber
DukptEncryptionAttributes.Builder keySerialNumber(String keySerialNumber)
The unique identifier known as Key Serial Number (KSN) that comes from an encrypting device using DUKPT encryption method. The KSN is derived from the encrypting device unique identifier and an internal transaction counter.
- Parameters:
keySerialNumber- The unique identifier known as Key Serial Number (KSN) that comes from an encrypting device using DUKPT encryption method. The KSN is derived from the encrypting device unique identifier and an internal transaction counter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
mode
DukptEncryptionAttributes.Builder mode(String mode)
The block cipher method to use for encryption.
The default is CBC.
- Parameters:
mode- The block cipher method to use for encryption.The default is CBC.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DukptEncryptionMode,DukptEncryptionMode
-
mode
DukptEncryptionAttributes.Builder mode(DukptEncryptionMode mode)
The block cipher method to use for encryption.
The default is CBC.
- Parameters:
mode- The block cipher method to use for encryption.The default is CBC.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DukptEncryptionMode,DukptEncryptionMode
-
-