aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Security/IEncryptionManager.cs
blob: 68680fdf3f1b4d32546b449239eb1817cc13545e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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);
    }
}