Interface EmvEncryptionAttributes.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EmvEncryptionAttributes.Builder,EmvEncryptionAttributes>,SdkBuilder<EmvEncryptionAttributes.Builder,EmvEncryptionAttributes>,SdkPojo
- Enclosing class:
- EmvEncryptionAttributes
public static interface EmvEncryptionAttributes.Builder extends SdkPojo, CopyableBuilder<EmvEncryptionAttributes.Builder,EmvEncryptionAttributes>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EmvEncryptionAttributes.BuilderinitializationVector(String initializationVector)An input used to provide the intial state.EmvEncryptionAttributes.BuildermajorKeyDerivationMode(String majorKeyDerivationMode)The EMV derivation mode to use for ICC master key derivation as per EMV version 4.3 book 2.EmvEncryptionAttributes.BuildermajorKeyDerivationMode(EmvMajorKeyDerivationMode majorKeyDerivationMode)The EMV derivation mode to use for ICC master key derivation as per EMV version 4.3 book 2.EmvEncryptionAttributes.Buildermode(String mode)The block cipher method to use for encryption.EmvEncryptionAttributes.Buildermode(EmvEncryptionMode mode)The block cipher method to use for encryption.EmvEncryptionAttributes.BuilderpanSequenceNumber(String panSequenceNumber)A number that identifies and differentiates payment cards with the same Primary Account Number (PAN).EmvEncryptionAttributes.BuilderprimaryAccountNumber(String primaryAccountNumber)The Primary Account Number (PAN), a unique identifier for a payment credit or debit card and associates the card to a specific account holder.EmvEncryptionAttributes.BuildersessionDerivationData(String sessionDerivationData)The derivation value used to derive the ICC session key.-
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
-
initializationVector
EmvEncryptionAttributes.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.
-
majorKeyDerivationMode
EmvEncryptionAttributes.Builder majorKeyDerivationMode(String majorKeyDerivationMode)
The EMV derivation mode to use for ICC master key derivation as per EMV version 4.3 book 2.
- Parameters:
majorKeyDerivationMode- The EMV derivation mode to use for ICC master key derivation as per EMV version 4.3 book 2.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EmvMajorKeyDerivationMode,EmvMajorKeyDerivationMode
-
majorKeyDerivationMode
EmvEncryptionAttributes.Builder majorKeyDerivationMode(EmvMajorKeyDerivationMode majorKeyDerivationMode)
The EMV derivation mode to use for ICC master key derivation as per EMV version 4.3 book 2.
- Parameters:
majorKeyDerivationMode- The EMV derivation mode to use for ICC master key derivation as per EMV version 4.3 book 2.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EmvMajorKeyDerivationMode,EmvMajorKeyDerivationMode
-
mode
EmvEncryptionAttributes.Builder mode(String mode)
The block cipher method to use for encryption.
- Parameters:
mode- The block cipher method to use for encryption.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EmvEncryptionMode,EmvEncryptionMode
-
mode
EmvEncryptionAttributes.Builder mode(EmvEncryptionMode mode)
The block cipher method to use for encryption.
- Parameters:
mode- The block cipher method to use for encryption.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EmvEncryptionMode,EmvEncryptionMode
-
panSequenceNumber
EmvEncryptionAttributes.Builder panSequenceNumber(String panSequenceNumber)
A number that identifies and differentiates payment cards with the same Primary Account Number (PAN).
- Parameters:
panSequenceNumber- A number that identifies and differentiates payment cards with the same Primary Account Number (PAN).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
primaryAccountNumber
EmvEncryptionAttributes.Builder primaryAccountNumber(String primaryAccountNumber)
The Primary Account Number (PAN), a unique identifier for a payment credit or debit card and associates the card to a specific account holder.
- Parameters:
primaryAccountNumber- The Primary Account Number (PAN), a unique identifier for a payment credit or debit card and associates the card to a specific account holder.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sessionDerivationData
EmvEncryptionAttributes.Builder sessionDerivationData(String sessionDerivationData)
The derivation value used to derive the ICC session key. It is typically the application transaction counter value padded with zeros or previous ARQC value padded with zeros as per EMV version 4.3 book 2.
- Parameters:
sessionDerivationData- The derivation value used to derive the ICC session key. It is typically the application transaction counter value padded with zeros or previous ARQC value padded with zeros as per EMV version 4.3 book 2.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-