MD5计算
string password = txtPassword.Text.Trim();byte[] result = Encoding.Default.GetBytes(password);MD5 md5 = new MD5CryptoServiceProvider();byte[] output = md5.ComputeHash(result);password = BitConverter.ToString(output).Replace("-", "");
浙公网安备 33010602011771号