Skip to content

Instantly share code, notes, and snippets.

@sfmskywalker
Created November 2, 2019 09:40
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 sfmskywalker/513e3c73d010c834d99e59fbb22ec484 to your computer and use it in GitHub Desktop.
Save sfmskywalker/513e3c73d010c834d99e59fbb22ec484 to your computer and use it in GitHub Desktop.
IPasswordHasher.cs - Building Workflow Driven .NET Core Applications with Elsa
using Elsa.Samples.UserRegistration.Web.Models;
namespace Elsa.Samples.UserRegistration.Web.Services
{
public interface IPasswordHasher
{
HashedPassword HashPassword(string password);
HashedPassword HashPassword(string password, byte[] salt);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment