aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Security/EncryptionManager.cs
blob: 33818dcea9900f4c81b9f1939948e7bcf6079e9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
using MediaBrowser.Controller.Security;
using System;
using System.Security.Cryptography;
using System.Text;

namespace MediaBrowser.Server.Implementations.Security
{
    public class EncryptionManager : IEncryptionManager
    {
        /// <summary>
        /// Encrypts the string.
        /// </summary>
        /// <param name="value">The value.</param>
        /// <returns>System.String.</returns>
        /// <exception cref="System.ArgumentNullException">value</exception>
        public string EncryptString(string value)
        {
            if (value == null) throw new ArgumentNullException("value");

#if __MonoCS__
            return EncryptStringUniversal(value);
#endif

            return Encoding.Default.GetString(ProtectedData.Protect(Encoding.Default.GetBytes(value), null, DataProtectionScope.LocalMachine));
        }

        /// <summary>
        /// Decrypts the string.
        /// </summary>
        /// <param name="value">The value.</param>
        /// <returns>System.String.</returns>
        /// <exception cref="System.ArgumentNullException">value</exception>
        public string DecryptString(string value)
        {
            if (value == null) throw new ArgumentNullException("value");

#if __MonoCS__
            return DecryptStringUniversal(value);
#endif

            return Encoding.Default.GetString(ProtectedData.Unprotect(Encoding.Default.GetBytes(value), null, DataProtectionScope.LocalMachine));
        }

        private string EncryptStringUniversal(string value)
        {
            // Yes, this isn't good, but ProtectedData in mono is throwing exceptions, so use this for now

            var bytes = Encoding.UTF8.GetBytes(value);
            return Convert.ToBase64String(bytes);
        }

        private string DecryptStringUniversal(string value)
        {
            // Yes, this isn't good, but ProtectedData in mono is throwing exceptions, so use this for now

            var bytes = Convert.FromBase64String(value);
            return Encoding.UTF8.GetString(bytes);
        }
    }
}