namespace DotBased.AspNet.Authority.Crypto;

public class PasswordHasher : IPasswordHasher
{
    public async Task<string> HashPasswordAsync(string password)
    {
        throw new NotImplementedException();
    }
}