mirror of
https://github.com/hmaxnl/DotBased.git
synced 2025-01-18 18:14:20 +01:00
9 lines
216 B
C#
9 lines
216 B
C#
namespace DotBased.AspNet.Authority.Crypto;
|
|
|
|
public class PasswordHasher : IPasswordHasher
|
|
{
|
|
public async Task<string> HashPasswordAsync(string password)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
} |