BExIS.Web.Shell.Areas.DCM.Helpers.Utility.ComputeKey C# (CSharp) Method

ComputeKey() public static method

public static ComputeKey ( ) : byte[]
return byte[]
        public static byte[] ComputeKey(params string[] values)
        {
            string input = string.Join(",",values);

            using (MD5 md5 = MD5.Create())
            {
                return md5.ComputeHash(Encoding.Default.GetBytes(input));

            }
        }
Utility