6 lines
141 B
C#
Executable File
6 lines
141 B
C#
Executable File
namespace DotBased.AspNet.Authority.Crypto;
|
|
|
|
public interface IPasswordHasher
|
|
{
|
|
public Task<string> HashPasswordAsync(string password);
|
|
} |