aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Security/IEncryptionManager.cs
diff options
context:
space:
mode:
authorVasily <JustAMan@users.noreply.github.com>2019-03-06 15:56:15 +0300
committerGitHub <noreply@github.com>2019-03-06 15:56:15 +0300
commit2242c8d7936bf30d1232f8618ef5b59dbd901aaa (patch)
treec642b399f072b9a8f76c3e6d9e9f86cde5fdc30a /MediaBrowser.Controller/Security/IEncryptionManager.cs
parent5587dd8bfb93971f0a9a93006567f528c3530f50 (diff)
parent139807719c9f7a0176eeacf7a64c95dc070850bc (diff)
Merge pull request #915 from cvium/remove_encryptionmanager
Remove IEncryptionManager
Diffstat (limited to 'MediaBrowser.Controller/Security/IEncryptionManager.cs')
-rw-r--r--MediaBrowser.Controller/Security/IEncryptionManager.cs19
1 files changed, 0 insertions, 19 deletions
diff --git a/MediaBrowser.Controller/Security/IEncryptionManager.cs b/MediaBrowser.Controller/Security/IEncryptionManager.cs
deleted file mode 100644
index 68680fdf3..000000000
--- a/MediaBrowser.Controller/Security/IEncryptionManager.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-namespace MediaBrowser.Controller.Security
-{
- public interface IEncryptionManager
- {
- /// <summary>
- /// Encrypts the string.
- /// </summary>
- /// <param name="value">The value.</param>
- /// <returns>System.String.</returns>
- string EncryptString(string value);
-
- /// <summary>
- /// Decrypts the string.
- /// </summary>
- /// <param name="value">The value.</param>
- /// <returns>System.String.</returns>
- string DecryptString(string value);
- }
-}