Class JceEncryptionConstants
- java.lang.Object
-
- com.amazonaws.services.s3.internal.crypto.JceEncryptionConstants
-
public class JceEncryptionConstants extends Object
Contains constants required by the JCE encryption library.
-
-
Field Summary
Fields Modifier and Type Field Description static int
SYMMETRIC_CIPHER_BLOCK_SIZE
AES cipher block sizestatic String
SYMMETRIC_CIPHER_METHOD
Name of the algorithm, mode, and padding we will use in the symmetric cipher for encryptionstatic String
SYMMETRIC_KEY_ALGORITHM
Name of the symmetric encryption algorithmstatic int
SYMMETRIC_KEY_LENGTH
Minimum length of the generated symmetric key
-
Constructor Summary
Constructors Constructor Description JceEncryptionConstants()
-
-
-
Field Detail
-
SYMMETRIC_KEY_ALGORITHM
public static final String SYMMETRIC_KEY_ALGORITHM
Name of the symmetric encryption algorithm- See Also:
- Constant Field Values
-
SYMMETRIC_CIPHER_METHOD
public static final String SYMMETRIC_CIPHER_METHOD
Name of the algorithm, mode, and padding we will use in the symmetric cipher for encryption- See Also:
- Constant Field Values
-
SYMMETRIC_KEY_LENGTH
public static final int SYMMETRIC_KEY_LENGTH
Minimum length of the generated symmetric key- See Also:
- Constant Field Values
-
SYMMETRIC_CIPHER_BLOCK_SIZE
public static final int SYMMETRIC_CIPHER_BLOCK_SIZE
AES cipher block size- See Also:
- Constant Field Values
-
-