Verifies the password by comparing raw input with hashed version
static bool verify(String raw, String hashed) { return hash(raw) == hashed; }