public enum EncAlgo extends Enum<EncAlgo>
| Enum Constant and Description |
|---|
EC |
ECIES
ECIES encryption.
|
ECIES_MLKEM
ECIES-MLKEM hybrid encryption.
|
ECIES_MLKEM_INT
ECIES-MLKEM hybrid encryption (internal).
|
ELGAMAL |
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
static EncAlgo |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EncAlgo[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EncAlgo EC
public static final EncAlgo ECIES
public static final EncAlgo ECIES_MLKEM
public static final EncAlgo ECIES_MLKEM_INT
public static final EncAlgo ELGAMAL
public String getName()
public static EncAlgo 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 nullpublic static EncAlgo[] values()
for (EncAlgo c : EncAlgo.values()) System.out.println(c);