private static string GetHashString(string s)
{
byte[] hash = new MD5CryptoServiceProvider().ComputeHash(Encoding.Unicode.GetBytes(s));
string empty = string.Empty;
foreach (byte num in hash)
empty += string.Format("{0:x2}", (object) num);
return empty;
}