open fun computeHash(password: String, salt: String): String
Compute the hashed password given the unhashed password and the salt without nonce The implementation relays to the JDBCHashStrategy provided.
password - the unhashed password
Return
the hashed password
open fun computeHash(password: String, salt: String, version: Int): String
Compute the hashed password given the unhashed password and the salt The implementation relays to the JDBCHashStrategy provided.
password - the unhashed password
version - the nonce version to use
Return
the hashed password