diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-05-07 14:38:50 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-05-07 14:38:50 -0400 |
| commit | 9e4b34a4b1baebf611b615ead6018c15c4536820 (patch) | |
| tree | 7de3528eaad24dce030d3a383a91a2a612b7fed0 /MediaBrowser.Controller/Security | |
| parent | 0d025f7fb620bf2a24ca9aa4e5994f132e02e7c0 (diff) | |
add basic open subtitle configuration
Diffstat (limited to 'MediaBrowser.Controller/Security')
| -rw-r--r-- | MediaBrowser.Controller/Security/IEncryptionManager.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Security/IEncryptionManager.cs b/MediaBrowser.Controller/Security/IEncryptionManager.cs new file mode 100644 index 000000000..bb4f77d83 --- /dev/null +++ b/MediaBrowser.Controller/Security/IEncryptionManager.cs @@ -0,0 +1,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); + } +} |
