You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
542 B
21 lines
542 B
|
|
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);
|
|
}
|
|
}
|