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

9 lines
216 B
C#
Executable File

namespace DotBased.AspNet.Authority.Crypto;
public class PasswordHasher : IPasswordHasher
{
public async Task<string> HashPasswordAsync(string password)
{
throw new NotImplementedException();
}
}