Skip to content

Instantly share code, notes, and snippets.

@BerkeSoysal
Last active January 30, 2022 19:52
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/27001649b0b853209e5cb6a71c1f6424 to your computer and use it in GitHub Desktop.
Save BerkeSoysal/27001649b0b853209e5cb6a71c1f6424 to your computer and use it in GitHub Desktop.
public class PasswordService
{
private Base64Hasher hasher = new Base64Hasher();
void hashPassword(String password)
{
hasher.hashPassword(password);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment