feat(core): add base entity and password hashing abstractions

This commit is contained in:
Stevan Freeborn
2026-02-03 04:38:40 -06:00
parent 12ae1dc33a
commit e66911810f
3 changed files with 26 additions and 0 deletions
@@ -0,0 +1,7 @@
namespace FiscalOS.Core.Identity;
public interface IPasswordHasher
{
string Hash(string password);
bool Verify(string providedPassword, string hashedPassword);
}