registration and authorization
This commit is contained in:
parent
2b5f468b84
commit
4423dc360f
12 changed files with 136 additions and 6 deletions
|
|
@ -0,0 +1,7 @@
|
|||
namespace SurveyBackend.Core.Services;
|
||||
|
||||
public interface IPasswordHasher
|
||||
{
|
||||
public string HashPassword(string password);
|
||||
public bool Verify(string password, string hashedPassword);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue