Package com.ibm.fhir.model.util
Class SaltHash
- java.lang.Object
-
- com.ibm.fhir.model.util.SaltHash
-
public class SaltHash extends 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(Object other)
byte[]
getHash()
Getter for the hash (digest) valuebyte[]
getSalt()
Getter for the salt valueString
toString()
-
-
-
Constructor Detail
-
SaltHash
public SaltHash(byte[] salt, byte[] hash)
Public constructor- Parameters:
salt
-hash
-
-
SaltHash
public SaltHash(String tuple)
Public constructor- Parameters:
tuple
-
-
-