AdvancedLauncher.Tools.FingerPrint.GetHash C# (CSharp) Method

GetHash() private static method

private static GetHash ( string s ) : string
s string
return string
        private static string GetHash(string s)
        {
            MD5 sec = new MD5CryptoServiceProvider();
            ASCIIEncoding enc = new ASCIIEncoding();
            byte[] bt = enc.GetBytes(s);
            return GetHexString(sec.ComputeHash(bt));
        }