DotBased/DotBased.AspNet.Authority/Crypto/PasswordHasher.cs

9 lines
216 B
C#
Raw Permalink Normal View History

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