namespace MediaBrowser.Controller.Security
{
    public interface IEncryptionManager
    {
        /// 
        /// Encrypts the string.
        /// 
        /// The value.
        /// System.String.
        string EncryptString(string value);
        /// 
        /// Decrypts the string.
        /// 
        /// The value.
        /// System.String.
        string DecryptString(string value);
    }
}