IEncryptionManager.cs 542 B

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