public enum SunJCEAlgorithm extends java.lang.Enum<SunJCEAlgorithm> implements Algorithm
SunJCEAlgorithm defines the algorithm specified by the SunJCE security provider.| Enum Constant and Description |
|---|
Blowfish
The Blowfish algorithm.
|
DES
The DES algorithm.
|
DESede
The DESede algorithm.
|
PBEWithMD5AndDES
The PBEWithMD5AndDES algorithm.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getAlgorithm()
Gets the algorithm for encryption or decryption.
|
static SunJCEAlgorithm |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SunJCEAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SunJCEAlgorithm Blowfish
public static final SunJCEAlgorithm DES
public static final SunJCEAlgorithm DESede
public static final SunJCEAlgorithm PBEWithMD5AndDES
public static SunJCEAlgorithm[] values()
for (SunJCEAlgorithm c : SunJCEAlgorithm.values()) System.out.println(c);
public static SunJCEAlgorithm valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getAlgorithm()
AlgorithmgetAlgorithm in interface Algorithm