Merge pull request #915 from cvium/remove_encryptionmanager

Remove IEncryptionManager
This commit is contained in:
Vasily
2019-03-06 15:56:15 +03:00
committed by GitHub
4 changed files with 11 additions and 88 deletions

View File

@@ -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);
}
}