DotBased/DotBased.AspNet.Authority/Crypto/IPasswordHasher.cs
2025-01-27 01:21:09 +01:00

6 lines
141 B
C#
Executable File

namespace DotBased.AspNet.Authority.Crypto;
public interface IPasswordHasher
{
public Task<string> HashPasswordAsync(string password);
}