DotBased/DotBased.AspNet.Authority/Crypto/IPasswordHasher.cs

6 lines
141 B
C#
Raw Permalink Normal View History

2024-12-25 22:50:04 +01:00
namespace DotBased.AspNet.Authority.Crypto;
public interface IPasswordHasher
{
public Task<string> HashPasswordAsync(string password);
}