Skip to content

Instantly share code, notes, and snippets.

@BerkeSoysal
Created January 5, 2022 19:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BerkeSoysal/4bcecd8ea0146fd6f2a03ca4efd1d258 to your computer and use it in GitHub Desktop.
Save BerkeSoysal/4bcecd8ea0146fd6f2a03ca4efd1d258 to your computer and use it in GitHub Desktop.
public abstract class Hashed
{
PasswordHasher passwordHasher;
String hash;
public void generateHash(String password)
{
hash = passwordHasher.hashPassword(password);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment