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