public enum Algorithm extends Enum<Algorithm>
| Enum Constant and Description |
|---|
BCrypt
Supported in Spring Boot
|
PBKDF2WithHmacSHA224
Supported by Soteria, Java EE
|
PBKDF2WithHmacSHA256
Supported by Soteria, Java EE
|
PBKDF2WithHmacSHA384
Supported by Soteria, Java EE
|
PBKDF2WithHmacSHA512
Supported by Soteria, Java EE
|
| Modifier and Type | Method and Description |
|---|---|
static Algorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Algorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Algorithm PBKDF2WithHmacSHA224
public static final Algorithm PBKDF2WithHmacSHA256
public static final Algorithm PBKDF2WithHmacSHA384
public static final Algorithm PBKDF2WithHmacSHA512
public static final Algorithm BCrypt
public static Algorithm[] values()
for (Algorithm c : Algorithm.values()) System.out.println(c);
public static Algorithm 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 © 2020. All rights reserved.