Jackett/src/Jackett.Common/Services/Interfaces/ISecurityService.cs

9 lines
189 B
C#

namespace Jackett.Common.Services.Interfaces
{
public interface ISecurityService
{
bool CheckAuthorised(string password);
string HashPassword(string input);
}
}