Package page.codeberg.friedolyn.crypto
Enum Class Argon2Version
- All Implemented Interfaces:
Serializable
,Comparable<Argon2Version>
,Constable
The revision of the Argon2 key derivation function
that shall be used. Strongly recommended:
ARGON2_VERSION_19
.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionVersion 16 (decimal) = 10 (hex)Version 19 (decimal) = 13 (hex) -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic Argon2Version
Returns the enum constant of this class with the specified name.static Argon2Version[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ARGON2_VERSION_16
Version 16 (decimal) = 10 (hex) -
ARGON2_VERSION_19
Version 19 (decimal) = 13 (hex)
-
-
Field Details
-
version
public final int version
-
-
Constructor Details
-
Argon2Version
private Argon2Version(int version)
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-