Class SaltHash
- java.lang.Object
-
- org.linuxforhealth.fhir.model.util.SaltHash
-
public class SaltHash extends java.lang.Object
Envelope for holding the salt and hash together for convenience
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object other)
byte[]
getHash()
Getter for the hash (digest) valuebyte[]
getSalt()
Getter for the salt valuejava.lang.String
toString()
-
-
-
Method Detail
-
getSalt
public byte[] getSalt()
Getter for the salt value- Returns:
-
getHash
public byte[] getHash()
Getter for the hash (digest) value- Returns:
-
equals
public boolean equals(java.lang.Object other)
- Overrides:
equals
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-