Skip to content

Instantly share code, notes, and snippets.

@BerkeSoysal
Created January 5, 2022 19:33
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/0227dffd2fa89239463eb89e2ef6c891 to your computer and use it in GitHub Desktop.
Save BerkeSoysal/0227dffd2fa89239463eb89e2ef6c891 to your computer and use it in GitHub Desktop.
public abstract class Hashed
{
PasswordHasher passwordHasher;
String hash;
abstract void generateHash(String password);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment