关于网友提出的“C# MD5转delphi”问题疑问,本网通过在网上对“C# MD5转delphi”有关的相关答案进行了整理,供用户进行参考,详细问题解答如下:
问题:C# MD5转delphi
描述: public static string BSEncrypMD5(string content, string key)
{
Byte[] bytes = MD5.Create().ComputeHash(Encoding.UTF8.GetBytes(content + key));
string pwd = BitConverter.ToString(bytes).Replace("-", "");
return pwd;
}
//---
懂C#的兄弟帮转delphi写法
以上介绍了“C# MD5转delphi”的问题解答,希望对有需要的网友有所帮助。
本文网址链接:http://www.codes51.com/itwd/821208.html