Uses of Enum
io.inverno.mod.security.authentication.password.Argon2Password.Encoder.HashType
Packages that use Argon2Password.Encoder.HashType
-
Uses of Argon2Password.Encoder.HashType in io.inverno.mod.security.authentication.password
Fields in io.inverno.mod.security.authentication.password declared as Argon2Password.Encoder.HashTypeModifier and TypeFieldDescriptionstatic final Argon2Password.Encoder.HashTypeArgon2Password.Encoder.DEFAULT_TYPEThe default hash type:I.Methods in io.inverno.mod.security.authentication.password that return Argon2Password.Encoder.HashTypeModifier and TypeMethodDescriptionArgon2Password.Encoder.HashType.fromId(int id) Returns the hash type corresponding to the specified id.Returns the hash type corresponding to the specified name.Argon2Password.Encoder.getType()Returns the hash type.Returns the enum constant of this type with the specified name.static Argon2Password.Encoder.HashType[]Argon2Password.Encoder.HashType.values()Returns an array containing the constants of this enum type, in the order they are declared.Constructors in io.inverno.mod.security.authentication.password with parameters of type Argon2Password.Encoder.HashTypeModifierConstructorDescriptionEncoder(Argon2Password.Encoder.HashType type, int saltLength, int hashLength, int parallelism, int memory, int iterationCount) Creates an Argon2 password encoder with the specified hash type, salt length, hash length, degree of parallelism, amount of memory and iteration count.Encoder(Argon2Password.Encoder.HashType type, int saltLength, int hashLength, int parallelism, int memory, int iterationCount, byte[] secret, byte[] additionalData) Creates an Argon2 password encoder with the specified hash type, salt length, hash length, degree of parallelism, amount of memory, iteration count, secret data and additional data.Encoder(Argon2Password.Encoder.HashType type, int saltLength, int hashLength, int parallelism, int memory, int iterationCount, byte[] secret, byte[] additionalData, SecureRandom secureRandom) Creates an Argon2 password encoder with the specified hash type, salt length, hash length, degree of parallelism, amount of memory, iteration count, secret data, additional data and secure random.