Interface SymmetricEncryptionAttributes.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SymmetricEncryptionAttributes.Builder,SymmetricEncryptionAttributes>,SdkBuilder<SymmetricEncryptionAttributes.Builder,SymmetricEncryptionAttributes>,SdkPojo
- Enclosing class:
- SymmetricEncryptionAttributes
public static interface SymmetricEncryptionAttributes.Builder extends SdkPojo, CopyableBuilder<SymmetricEncryptionAttributes.Builder,SymmetricEncryptionAttributes>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SymmetricEncryptionAttributes.BuilderinitializationVector(String initializationVector)An input to cryptographic primitive used to provide the intial state.SymmetricEncryptionAttributes.Buildermode(String mode)The block cipher mode of operation.SymmetricEncryptionAttributes.Buildermode(EncryptionMode mode)The block cipher mode of operation.SymmetricEncryptionAttributes.BuilderpaddingType(String paddingType)The padding to be included with the data.SymmetricEncryptionAttributes.BuilderpaddingType(PaddingType paddingType)The padding to be included with the data.-
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
SymmetricEncryptionAttributes.Builder initializationVector(String initializationVector)
An input to cryptographic primitive used to provide the intial state. The
InitializationVectoris typically required have a random or psuedo-random value, but sometimes it only needs to be unpredictable or unique. If a value is not provided, Amazon Web Services Payment Cryptography generates a random value.- Parameters:
initializationVector- An input to cryptographic primitive used to provide the intial state. TheInitializationVectoris typically required have a random or psuedo-random value, but sometimes it only needs to be unpredictable or unique. If a value is not provided, Amazon Web Services Payment Cryptography generates a random value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
mode
SymmetricEncryptionAttributes.Builder mode(String mode)
The block cipher mode of operation. Block ciphers are designed to encrypt a block of data of fixed size (for example, 128 bits). The size of the input block is usually same as the size of the encrypted output block, while the key length can be different. A mode of operation describes how to repeatedly apply a cipher's single-block operation to securely transform amounts of data larger than a block.
- Parameters:
mode- The block cipher mode of operation. Block ciphers are designed to encrypt a block of data of fixed size (for example, 128 bits). The size of the input block is usually same as the size of the encrypted output block, while the key length can be different. A mode of operation describes how to repeatedly apply a cipher's single-block operation to securely transform amounts of data larger than a block.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EncryptionMode,EncryptionMode
-
mode
SymmetricEncryptionAttributes.Builder mode(EncryptionMode mode)
The block cipher mode of operation. Block ciphers are designed to encrypt a block of data of fixed size (for example, 128 bits). The size of the input block is usually same as the size of the encrypted output block, while the key length can be different. A mode of operation describes how to repeatedly apply a cipher's single-block operation to securely transform amounts of data larger than a block.
- Parameters:
mode- The block cipher mode of operation. Block ciphers are designed to encrypt a block of data of fixed size (for example, 128 bits). The size of the input block is usually same as the size of the encrypted output block, while the key length can be different. A mode of operation describes how to repeatedly apply a cipher's single-block operation to securely transform amounts of data larger than a block.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EncryptionMode,EncryptionMode
-
paddingType
SymmetricEncryptionAttributes.Builder paddingType(String paddingType)
The padding to be included with the data.
- Parameters:
paddingType- The padding to be included with the data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
PaddingType,PaddingType
-
paddingType
SymmetricEncryptionAttributes.Builder paddingType(PaddingType paddingType)
The padding to be included with the data.
- Parameters:
paddingType- The padding to be included with the data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
PaddingType,PaddingType
-
-