Record Class IdPassword

java.lang.Object
java.lang.Record
com.io7m.idstore.model.IdPassword
Record Components:
algorithm - The hash algorithm
hash - The hashed password
salt - The salt value
All Implemented Interfaces:
Formattable

public record IdPassword(IdPasswordAlgorithmType algorithm, String hash, String salt) extends Record implements Formattable
A hashed password for a user.
  • Field Details

    • VALID_HEX

      public static final Pattern VALID_HEX
      The pattern that defines a valid hash.
  • Constructor Details

    • IdPassword

      public IdPassword(IdPasswordAlgorithmType algorithm, String hash, String salt)
      A hashed password for a user.
      Parameters:
      algorithm - The hash algorithm
      hash - The hashed password
      salt - The salt value
  • Method Details

    • check

      public boolean check(String passwordText) throws IdPasswordException
      Check the given plain text password against this hashed password.
      Parameters:
      passwordText - The plain text password
      Returns:
      true iff the password matches
      Throws:
      IdPasswordException - On internal errors such as missing algorithm support
      See Also:
    • formatTo

      public void formatTo(Formatter formatter, int flags, int width, int precision)
      Specified by:
      formatTo in interface Formattable
    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • algorithm

      public IdPasswordAlgorithmType algorithm()
      Returns the value of the algorithm record component.
      Returns:
      the value of the algorithm record component
    • hash

      public String hash()
      Returns the value of the hash record component.
      Returns:
      the value of the hash record component
    • salt

      public String salt()
      Returns the value of the salt record component.
      Returns:
      the value of the salt record component