IEncryptionManager.cs 538 B

12345678910111213141516171819
  1. namespace MediaBrowser.Controller.Security
  2. {
  3. public interface IEncryptionManager
  4. {
  5. /// <summary>
  6. /// Encrypts the string.
  7. /// </summary>
  8. /// <param name="value">The value.</param>
  9. /// <returns>System.String.</returns>
  10. string EncryptString(string value);
  11. /// <summary>
  12. /// Decrypts the string.
  13. /// </summary>
  14. /// <param name="value">The value.</param>
  15. /// <returns>System.String.</returns>
  16. string DecryptString(string value);
  17. }
  18. }