我在C#中有一个哈希算法,简而言之,它是:
string hashCode = string.Empty;
if (null != password)
{
System.Security.Cryptography.MD5 cryptography = new System.Security.Cryptography.MD5CryptoServiceProvider();
byte[] code = cryptography.ComputeHash(Encoding.Default.GetBytes(password));
StringBuilder stringBuilder = new StringBuilder();
// Converting the code to string.
for (int i = 0; i < code.Length; i++)
{
stringBuilder.Append(code[i].ToString("x2"));
}
hashCode = stringBuilder.ToString();
}
return hashCode;
}
现在我需要在php中复制这种行为..... 提前谢谢......
注意:我无法更改C#行为,因为它已经实现,并且使用此算法将密码保存在我的数据库中。
答案 0 :(得分:3)
答案 1 :(得分:0)
见下文