feat(core): add base entity and password hashing abstractions
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
namespace FiscalOS.Core.Identity;
|
||||
|
||||
public interface IPasswordHasher
|
||||
{
|
||||
string Hash(string password);
|
||||
bool Verify(string providedPassword, string hashedPassword);
|
||||
}
|
||||
Reference in New Issue
Block a user