bool verifySalt(String salt, String hash)

Source

bool verifySalt(String salt, String hash) {
  return hashSalt(salt) == hash;
}