Add initial implementation of API, database, and user management components.
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
namespace MikrocopApi.Services;
|
||||
|
||||
public interface IPasswordHashingService
|
||||
{
|
||||
(string Hash, string Salt) HashPassword(string password);
|
||||
bool VerifyPassword(string password, string hashBase64, string saltBase64);
|
||||
}
|
||||
Reference in New Issue
Block a user