aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Authentication/IAuthenticationProvider.cs
diff options
context:
space:
mode:
authorcrobibero <cody@robibe.ro>2020-06-07 14:47:08 -0600
committercrobibero <cody@robibe.ro>2020-06-07 14:47:08 -0600
commit68e1ecaaf9626c9596c833571bb591a326449dc8 (patch)
tree2d154298b20db305b40a89ec8467be59eb5a1429 /MediaBrowser.Controller/Authentication/IAuthenticationProvider.cs
parent98142613e8cd8266130847210fb6bfadc1ae11bd (diff)
Remove EasyPassword from Authentication providers
Diffstat (limited to 'MediaBrowser.Controller/Authentication/IAuthenticationProvider.cs')
-rw-r--r--MediaBrowser.Controller/Authentication/IAuthenticationProvider.cs2
1 files changed, 0 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Authentication/IAuthenticationProvider.cs b/MediaBrowser.Controller/Authentication/IAuthenticationProvider.cs
index c0324a384..da812f551 100644
--- a/MediaBrowser.Controller/Authentication/IAuthenticationProvider.cs
+++ b/MediaBrowser.Controller/Authentication/IAuthenticationProvider.cs
@@ -11,8 +11,6 @@ namespace MediaBrowser.Controller.Authentication
Task<ProviderAuthenticationResult> Authenticate(string username, string password);
bool HasPassword(User user);
Task ChangePassword(User user, string newPassword);
- void ChangeEasyPassword(User user, string newPassword, string newPasswordHash);
- string GetEasyPasswordHash(User user);
}
public interface IRequiresResolvedUser