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 SummaryEnum Constants Enum Constant Description ALG_AES_256_CBC_IV16_NO_KDFALG_AES_256_CTR_IV16_TAG16_NO_KDFALG_AES_256_GCM_IV12_TAG16_NO_KDF
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intcipherBlockSizeBytes()longcipherMaxContentLengthBits()longcipherMaxContentLengthBytes()StringcipherName()intcipherTagLengthBits()intcipherTagLengthBytes()StringdataKeyAlgorithm()intdataKeyLengthBits()intid()booleanisLegacy()intiVLengthBytes()static AlgorithmSuitevalueOf(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_KDFpublic static final AlgorithmSuite ALG_AES_256_GCM_IV12_TAG16_NO_KDF 
 - 
ALG_AES_256_CTR_IV16_TAG16_NO_KDFpublic static final AlgorithmSuite ALG_AES_256_CTR_IV16_TAG16_NO_KDF 
 - 
ALG_AES_256_CBC_IV16_NO_KDFpublic static final AlgorithmSuite ALG_AES_256_CBC_IV16_NO_KDF 
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- NullPointerException- if the argument is null
 
 - 
idpublic int id() 
 - 
isLegacypublic boolean isLegacy() 
 - 
dataKeyAlgorithmpublic String dataKeyAlgorithm() 
 - 
dataKeyLengthBitspublic int dataKeyLengthBits() 
 - 
cipherNamepublic String cipherName() 
 - 
cipherTagLengthBitspublic int cipherTagLengthBits() 
 - 
cipherTagLengthBytespublic int cipherTagLengthBytes() 
 - 
iVLengthBytespublic int iVLengthBytes() 
 - 
cipherBlockSizeBytespublic int cipherBlockSizeBytes() 
 - 
cipherMaxContentLengthBitspublic long cipherMaxContentLengthBits() 
 - 
cipherMaxContentLengthBytespublic long cipherMaxContentLengthBytes() 
 
- 
 
-