Enum AlgorithmSuite
- java.lang.Object
-
- java.lang.Enum<AlgorithmSuite>
-
- software.amazon.encryption.s3.algorithms.AlgorithmSuite
-
- All Implemented Interfaces:
Serializable
,Comparable<AlgorithmSuite>
public enum AlgorithmSuite extends Enum<AlgorithmSuite>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALG_AES_256_CBC_IV16_NO_KDF
ALG_AES_256_CTR_IV16_TAG16_NO_KDF
ALG_AES_256_GCM_IV12_TAG16_NO_KDF
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
cipherBlockSizeBytes()
long
cipherMaxContentLengthBits()
long
cipherMaxContentLengthBytes()
String
cipherName()
int
cipherTagLengthBits()
int
cipherTagLengthBytes()
String
dataKeyAlgorithm()
int
dataKeyLengthBits()
int
id()
boolean
isLegacy()
int
iVLengthBytes()
static AlgorithmSuite
valueOf(String name)
Returns the enum constant of this type with the specified name.static AlgorithmSuite[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALG_AES_256_GCM_IV12_TAG16_NO_KDF
public static final AlgorithmSuite ALG_AES_256_GCM_IV12_TAG16_NO_KDF
-
ALG_AES_256_CTR_IV16_TAG16_NO_KDF
public static final AlgorithmSuite ALG_AES_256_CTR_IV16_TAG16_NO_KDF
-
ALG_AES_256_CBC_IV16_NO_KDF
public static final AlgorithmSuite ALG_AES_256_CBC_IV16_NO_KDF
-
-
Method Detail
-
values
public static AlgorithmSuite[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AlgorithmSuite c : AlgorithmSuite.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AlgorithmSuite valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
id
public int id()
-
isLegacy
public boolean isLegacy()
-
dataKeyAlgorithm
public String dataKeyAlgorithm()
-
dataKeyLengthBits
public int dataKeyLengthBits()
-
cipherName
public String cipherName()
-
cipherTagLengthBits
public int cipherTagLengthBits()
-
cipherTagLengthBytes
public int cipherTagLengthBytes()
-
iVLengthBytes
public int iVLengthBytes()
-
cipherBlockSizeBytes
public int cipherBlockSizeBytes()
-
cipherMaxContentLengthBits
public long cipherMaxContentLengthBits()
-
cipherMaxContentLengthBytes
public long cipherMaxContentLengthBytes()
-
-