Enum Class Argon2Version

java.lang.Object
java.lang.Enum<Argon2Version>
de.gustavblass.commons.crypto.Argon2Version
All Implemented Interfaces:
Serializable, Comparable<Argon2Version>, Constable

public enum Argon2Version extends Enum<Argon2Version>
The revision of the Argon2 key derivation function that shall be used. Strongly recommended: ARGON2_VERSION_19.
  • Enum Constant Details

    • ARGON2_VERSION_16

      public static final Argon2Version ARGON2_VERSION_16
      Version 16 (decimal) = 10 (hex)
    • ARGON2_VERSION_19

      public static final Argon2Version 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

      public static Argon2Version[] 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

      public static Argon2Version valueOf(String name)
      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 name
      NullPointerException - if the argument is null