public enum AesAlgorithm extends Enum<AesAlgorithm> implements Algorithm
AesAlgorithm for the Advanced Encryption Standard (AES), also known as Rijndael.| Enum Constant and Description |
|---|
AES
The enum constant for AES algorithm.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
AES_KEY_LENGTH
The Constant AES_KEY_LENGTH.
|
| Modifier and Type | Method and Description |
|---|---|
static AesAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AesAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfgetAlgorithmpublic static final AesAlgorithm AES
public static final int AES_KEY_LENGTH
public static AesAlgorithm[] values()
for (AesAlgorithm c : AesAlgorithm.values()) System.out.println(c);
public static AesAlgorithm valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2015–2018 Alpha Ro Group UG (haftungsbeschrÀngt). All rights reserved.