namespace MikrocopApi.Services; public interface IPasswordHashingService { (string Hash, string Salt) HashPassword(string password); bool VerifyPassword(string password, string hashBase64, string saltBase64); }