[ADD] Implementing services/handlers
This commit is contained in:
9
DotBased.AspNet.Authority/Crypto/PasswordHasher.cs
Normal file
9
DotBased.AspNet.Authority/Crypto/PasswordHasher.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace DotBased.AspNet.Authority.Crypto;
|
||||
|
||||
public class PasswordHasher : IPasswordHasher
|
||||
{
|
||||
public async Task<string> HashPasswordAsync(string password)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user