technical_interview/Server/BackEnd/Services/IPasswordService.cs

8 lines
224 B
C#
Raw Permalink Normal View History

namespace back_end.Services;
public interface IPasswordService
{
public void LoadCommonPasswords(string filepath);
public bool IsPasswordInvalid(string password);
public bool IsPasswordCommon(string password);
}