aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Extensions/BaseExtensions.cs
blob: 89cfbecad24d9b7250011ebdb7928c87dcd90b1d (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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Security.Cryptography;

namespace MediaBrowser.Common.Extensions
{
    public static class BaseExtensions
    {
        static MD5CryptoServiceProvider md5Provider = new MD5CryptoServiceProvider();

        public static Guid GetMD5(this string str)
        {
            lock (md5Provider)
            {
                return new Guid(md5Provider.ComputeHash(Encoding.Unicode.GetBytes(str)));
            }
        }

        public static bool ContainsStartsWith(this List<string> lst, string value)
        {
            foreach (var str in lst)
            {
                if (str.StartsWith(value, StringComparison.OrdinalIgnoreCase)) return true;
            }
            return false;
        }
    }
}