Files
Cleanuparr/code/backend/Cleanuparr.Infrastructure/Features/Auth/IPasswordService.cs
2026-02-15 13:15:06 +02:00

8 lines
187 B
C#

namespace Cleanuparr.Infrastructure.Features.Auth;
public interface IPasswordService
{
string HashPassword(string password);
bool VerifyPassword(string password, string hash);
}